Changeset 16829 in josm
- Timestamp:
- 2020-08-03T18:17:38+02:00 (5 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/resources/data/validator/combinations.mapcss
r16778 r16829 461 461 } 462 462 463 /* #19604 */ 464 way[name][alt_name][name=*alt_name] { 465 throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}"); 466 group: tr("suspicious tag combination"); 467 fixRemove: "alt_name"; 468 } 469 463 470 /* #10837 */ 464 471 way[destination][!oneway?][junction!=roundabout][highway] { -
trunk/resources/data/validator/ignoretags.cfg
r16819 r16829 140 140 E:voltage 141 141 E:amperage 142 E:generator:output:electricity 143 E:plant:output:electricity 142 144 E:capacity 143 145 E:seats -
trunk/src/org/openstreetmap/josm/data/validation/tests/Addresses.java
r16824 r16829 128 128 129 129 static boolean isPOI(OsmPrimitive p) { 130 return p.hasKey("shop", "amenity", "tourism", "leisure", "emergency", "craft", "office", "name"); 130 return p.hasKey("shop", "amenity", "tourism", "leisure", "emergency", "craft", "office", "name") || 131 p.hasTag("barrier", "entrance", "gate"); 131 132 } 132 133
Note:
See TracChangeset
for help on using the changeset viewer.