Changeset 16379 in josm for trunk


Ignore:
Timestamp:
2020-04-25T06:15:05+02:00 (4 years ago)
Author:
GerdP
Message:

see #19145: some unclosed ways are not found

  • add check for unclosed place=* ways
  • remove special mapcss check for unclosed place=island ways
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/resources/data/validator/geometry.mapcss

    r16145 r16379  
    335335}
    336336
    337 /* #15648 */
    338 way[place=island]!:closed {
    339   throwError: tr("Way with {0} not closed.", "{0.tag}");
    340 }
    341 
    342337/* #12561 - building larger than Aalsmeer Flower Auction (518000) and Tesla factory (510000) */
    343338area:closed[building][building!=no][eval(areasize()) > 520000] {
  • trunk/src/org/openstreetmap/josm/data/validation/tests/UnclosedWays.java

    r16378 r16379  
    155155        new UnclosedWaysCheck(1109, "boundary", marktr("boundary type {0}")),
    156156        new UnclosedWaysCheck(1110, "area:highway", marktr("area:highway type {0}")),
     157        new UnclosedWaysCheck(1111, "place", marktr("place type {0}")),
    157158        new UnclosedWaysBooleanCheck(1120, "building", marktr("building")),
    158159        new UnclosedWaysBooleanCheck(1130, "area",     marktr("area")),
Note: See TracChangeset for help on using the changeset viewer.