Changeset 13972 in josm
- Timestamp:
- 2018-06-24T19:29:55+02:00 (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/validator/combinations.mapcss
r13814 r13972 35 35 way[tracks ][!railway][route!=railway], 36 36 way[traffic_mode ][!railway][route!=railway], 37 way[usage ][!railway][route!=railway][man_made!=pipeline],38 37 way[workrules ][!railway][route!=railway], 39 38 way[stream ][!waterway], … … 110 109 *[bridge:movable ][bridge!=movable][man_made!=bridge], 111 110 *[substation ][power!=substation][pipeline!=substation], 112 *[reservoir_type ][landuse!=reservoir][water!=reservoir] { 111 *[reservoir_type ][landuse!=reservoir][water!=reservoir], 112 way[waterway=pressurised ][tunnel!=flooded][man_made!=pipeline] { 113 113 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.tag}", "{2.tag}"); 114 114 group: tr("missing tag"); … … 179 179 } 180 180 181 /* {0.tag} without {1.tag} */ 182 way[usage=penstock][man_made!=pipeline], 183 way[usage=penstock][waterway!=pressurised] { 184 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.tag}"); 185 group: tr("missing tag"); 186 } 187 181 188 /* {0.tag} without {1.tag} or {2.tag} */ 182 189 *[amenity=recycling][recycling_type!=container][recycling_type!=centre] { … … 211 218 *[amenity=vending_machine][shop], 212 219 *[noname?][name], 220 way[man_made=pipeline][tunnel=flooded] 221 way[waterway=canal][tunnel=yes] 213 222 way[oneway=yes][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath], 214 223 way[oneway=yes][/:forward/][!traffic_sign:forward][bicycle:forward!=use_sidepath], … … 375 384 } 376 385 377 /* #10140 */ 378 *[building:levels][!building][!building:part] { 386 /* {0.key} without {1.key} or {2.key} see #10140 */ 387 *[building:levels][!building][!building:part], 388 way[usage][!railway][!waterway][route!=railway][man_made!=pipeline] { 379 389 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}"); 380 390 group: tr("missing tag"); … … 463 473 } 464 474 465 /* #13138, 14468 */475 /* {1.key} without {2.tag} see #13138, 14468 */ 466 476 area:closed[water][natural!~/water|bay|strait/][water!=intermittent] { /* water=intermittent is deprecated and has an own warning */ 467 477 throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}"); -
trunk/styles/standard/elemstyles.mapcss
r13946 r13972 1448 1448 repeat-image: "presets/misc/embankment-pattern-centered.png"; 1449 1449 } 1450 way[man_made=pipeline] {1450 way[man_made=pipeline][!waterway] { 1451 1451 width: 2; 1452 1452 color: pipeline#660000; … … 4313 4313 color: riverbank#0000cf; 4314 4314 } 4315 way[waterway=pressurised], 4315 4316 way[waterway=canal] { 4316 4317 width: 2; … … 4322 4323 casing-color: lock#303030; 4323 4324 casing-dashes: 5,20; 4325 } 4326 way[waterway=pressurised][tunnel] { 4327 casing-width: 1; 4328 casing-color: tunnel#964B00; 4329 } 4330 way[waterway=pressurised][man_made=pipeline] { 4331 casing-width: 1; 4332 casing-color: pipeline#660000; 4324 4333 } 4325 4334 way[waterway=stream] {
Note:
See TracChangeset
for help on using the changeset viewer.