Changeset 14680 in josm


Ignore:
Timestamp:
2019-01-12T18:53:29+01:00 (6 years ago)
Author:
simon04
Message:

fix #14856 - Add naming tags for relations: water/waterway/wetland

Based on https://taginfo.openstreetmap.org/tags/type=multipolygon#combinations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/DefaultNameFormatter.java

    r14323 r14680  
    8888     * A ? prefix indicates a boolean value, for which the key (instead of the value) is used.
    8989     */
    90     private static final String[] DEFAULT_NAMING_TAGS_FOR_RELATIONS = {"name", "ref", "restriction", "landuse", "natural",
    91         "leisure", "amenity", "public_transport", ":LocationCode", "note", "?building", "?building:part"};
     90    private static final String[] DEFAULT_NAMING_TAGS_FOR_RELATIONS = {
     91            "name",
     92            "ref",
     93            //
     94            "amenity",
     95            "landuse",
     96            "leisure",
     97            "natural",
     98            "public_transport",
     99            "restriction",
     100            "water",
     101            "waterway",
     102            "wetland",
     103            //
     104            ":LocationCode",
     105            "note",
     106            "?building",
     107            "?building:part",
     108    };
    92109
    93110    /** the current list of tags used as naming tags in relations */
Note: See TracChangeset for help on using the changeset viewer.