Changeset 13006 in josm for trunk/data
- Timestamp:
- 2017-10-16T21:23:59+02:00 (7 years ago)
- Location:
- trunk/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/defaultpresets.xml
r12998 r13006 3105 3105 <check key="fuel:GTL_diesel" text="Diesel (Gas To Liquid - ultimate diesel)" /> 3106 3106 <check key="fuel:HGV_diesel" text="Diesel for Heavy Good Vehicles" /> 3107 <check key="fuel:adblue" text="Diesel Exhaust Fluid (AdBlue/AUS32)" />3108 3107 <check key="fuel:octane_80" text="Octane 80" /> 3109 3108 <check key="fuel:octane_91" text="Octane 91" /> … … 3119 3118 <check key="fuel:1_50" text="1/50 mix (mofa/moped)" /> 3120 3119 </checkgroup> 3120 <space /> 3121 <label text="Additives:" /> 3122 <check key="fuel:adblue" text="Diesel Exhaust Fluid (AdBlue/AUS32)" /> 3121 3123 <space /> 3122 3124 <label text="Fuel cards:" /> -
trunk/data/validator/geometry.mapcss
r12775 r13006 111 111 way[route=bus] { 112 112 throwError: tr("{0} on a way. Should be used in a relation", "{0.tag}"); 113 } 114 115 /* #14395 */ 116 way >[index=1] node, 117 way >[index=-1] node { 118 set first_last_node; 119 } 120 way[highway][area!=yes][!tunnel][!covered] > node { 121 set node_in_highway; 122 } 123 way[building][building!=no] > node.node_in_highway!.first_last_node { 124 throwWarning: tr("node connects highway and building"); 125 } 126 127 /* #15035, must not warn for node 3815077900*/ 128 node[man_made!=monitoring_station][at(0.0,0.0)] { 129 throwError: tr("Object at Position 0.00E 0.00N. There is nothing at this position except an already mapped weather buoy."); 130 fixDeleteObject: this; 113 131 } 114 132 … … 247 265 } 248 266 249 /* #11128, #14812 */267 /* #11128, #14812, #15032 */ 250 268 way[highway] > node[tourism=information][information=guidepost] { 251 269 set guidepost; … … 257 275 way[highway] > node[office][!entrance], 258 276 way[highway] > node[shop][!entrance], 259 way[highway] > node[tourism][!entrance][tourism!=viewpoint]!.guidepost { 277 way[highway] > node[tourism][!entrance][tourism!=viewpoint]!.guidepost.first_last_node:connection, 278 way[highway] > node[tourism][!entrance][tourism!=viewpoint]!.guidepost!.first_last_node { 260 279 throwWarning: tr("{0} node connected to a highway", "{0.key}"); 261 280 } … … 321 340 } 322 341 323 /* #14395 */324 way >[index=1] node,325 way >[index=-1] node {326 set first_last_node;327 }328 way[highway][area!=yes][!tunnel][!covered] > node {329 set node_in_highway;330 }331 way[building][building!=no] > node.node_in_highway!.first_last_node {332 throwWarning: tr("node connects highway and building");333 }334 335 /* #15035, must not warn for node 3815077900*/336 node[man_made!=monitoring_station][at(0.0,0.0)] {337 throwError: tr("Object at Position 0.00E 0.00N. There is nothing at this position except an already mapped weather buoy.");338 fixDeleteObject: this;339 }340 341 342 /* #15097 */ 342 343 way[highway][area!=yes] > node,
Note:
See TracChangeset
for help on using the changeset viewer.