Changeset 33974 in osm for applications/editors/josm/plugins/indoorhelper/data/indoorhelper.validator.mapcss
- Timestamp:
- 2018-01-04T11:05:03+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/data/indoorhelper.validator.mapcss
r32122 r33974 2 2 3 3 /* rule which checks if every way and every POI has a level-tag */ 4 way[! indoor:level], node:unconnected[!indoor:level]{4 way[!level], node:unconnected[!level]{ 5 5 throwWarning: tr("This object has no level tag."); 6 fixAdd: "indoor:level=*";6 fixAdd: tr("level=*"); 7 7 suggestAlternative: "Delete the object or use the plug-in to add a POI tag!"; 8 8 } 9 9 10 10 /* rules for wrong assigned ways or nodes */ 11 node:unconnected[ indoor:area], node:unconnected[indoor:highway]{11 node:unconnected[area], node:unconnected[highway]{ 12 12 throwWarning: tr("You assigned properties to a node which should only be assigned to ways!"); 13 fixRemove: " indoor:area";14 fixRemove: " indoor:highway";13 fixRemove: "area"; 14 fixRemove: "highway"; 15 15 } 16 16 17 way[ indoor:door], way[indoor:entrance]{17 way[door], way[entrance]{ 18 18 throwWarning: tr("You assigned properties to a way which should only be assigned to nodes!"); 19 fixRemove: " indoor:door";20 fixRemove: " indoor:entrance";19 fixRemove: "door"; 20 fixRemove: "entrance"; 21 21 } 22 23 24 25 26 27 28 29
Note:
See TracChangeset
for help on using the changeset viewer.