Changeset 15658 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2020-01-07T23:19:57+01:00 (5 years ago)
Author:
simon04
Message:

fix #18172 - Add new imagery categories "elevation" and "qa"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java

    r15241 r15658  
    112112        /** A aerial or satellite photo. **/
    113113        PHOTO(/* ICON(data/imagery/) */ "photo", tr("Aerial or satellite photo")),
     114        /** A map of digital terrain model or digital surface model. **/
     115        ELEVATION(/* ICON(data/imagery/) */ "elevation", tr("Elevation map")),
    114116        /** A map. **/
    115117        MAP(/* ICON(data/imagery/) */ "map", tr("Map")),
     
    120122        /** A historic or otherwise outdated aerial or satellite photo. **/
    121123        HISTORICPHOTO(/* ICON(data/imagery/) */ "historicphoto", tr("Historic or otherwise outdated aerial or satellite photo")),
     124        /** A map for quality assurance **/
     125        QUALITY_ASSURANCE(/* ICON(data/imagery/) */ "qa", tr("Map for quality assurance")),
    122126        /** Any other type of imagery **/
    123127        OTHER(/* ICON(data/imagery/) */ "other", tr("Imagery not matching any other category"));
Note: See TracChangeset for help on using the changeset viewer.