Changeset 10479 in osm for applications/editors
- Timestamp:
- 2008-09-04T15:17:51+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/NodesWithSameName.java
r9684 r10479 31 31 32 32 String name = n.get("name"); 33 if (name == null) return; 33 String sign = n.get("traffic_sign"); 34 if (name == null || (sign != null && sign.equals("city_limit"))) return; 34 35 35 36 List<Node> nodes = namesToNodes.get(name); -
applications/editors/josm/plugins/validator/tagchecker.cfg
r10065 r10479 45 45 way : I : highway == secondary && ref != * # highway without a reference 46 46 way : I : highway == tertiary && ref != * # highway without a reference 47 * : W : highway == road # temporary highway type 47 48 * : W : / *name */i == * && name != * # misspelled key name 48 49
Note:
See TracChangeset
for help on using the changeset viewer.