Changeset 15658 in josm
- Timestamp:
- 2020-01-07T23:19:57+01:00 (5 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/maps.xsd
r14890 r15658 682 682 <xs:element name="terms-of-use-url" minOccurs="0" maxOccurs="1" type="xs:string" /> 683 683 <!-- The image category, don't use enumeration, so future extension is possible --> 684 <!-- Currently defined values are: "photo", " map", "historicmap", "osmbasedmap", "historicphoto" and "other" -->684 <!-- Currently defined values are: "photo", "elevation", "map", "historicmap", "osmbasedmap", "historicphoto", "qa" and "other" --> 685 685 <xs:element name="category" minOccurs="1" maxOccurs="1" type="xs:string" /> 686 686 <!-- The ISO 3166 country code --> -
trunk/scripts/SyncEditorLayerIndex.java
r15478 r15658 1175 1175 } 1176 1176 } 1177 List<String> knownCategories = Arrays.asList("photo", "map", "historicmap", "osmbasedmap", "historicphoto", "other"); 1177 List<String> knownCategories = Arrays.asList( 1178 "photo", "elevation", "map", "historicmap", "osmbasedmap", "historicphoto", "qa", "other"); 1178 1179 String cat = getCategory(j); 1179 1180 if (isBlank(cat)) { -
trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
r15241 r15658 112 112 /** A aerial or satellite photo. **/ 113 113 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")), 114 116 /** A map. **/ 115 117 MAP(/* ICON(data/imagery/) */ "map", tr("Map")), … … 120 122 /** A historic or otherwise outdated aerial or satellite photo. **/ 121 123 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")), 122 126 /** Any other type of imagery **/ 123 127 OTHER(/* ICON(data/imagery/) */ "other", tr("Imagery not matching any other category"));
Note:
See TracChangeset
for help on using the changeset viewer.