Changeset 9212 in josm for trunk/src/org/openstreetmap/josm/data/coor
- Timestamp:
- 2015-12-29T18:51:22+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/CoordinateFormat.java
r8674 r9212 13 13 * the decimal format 999.999 14 14 */ 15 DECIMAL_DEGREES 15 DECIMAL_DEGREES(tr("Decimal Degrees")), 16 16 17 17 /** 18 18 * the degrees/minutes/seconds format 9 deg 99 min 99 sec 19 19 */ 20 DEGREES_MINUTES_SECONDS 20 DEGREES_MINUTES_SECONDS(tr("deg\u00B0 min'' sec\"")), 21 21 22 22 /** 23 23 * the nautical format 24 24 */ 25 NAUTICAL 25 NAUTICAL(tr("deg\u00B0 min'' (Nautical)")), 26 26 27 27 /** 28 28 * coordinates East/North 29 29 */ 30 EAST_NORTH 30 EAST_NORTH(tr("Projected Coordinates")); 31 31 32 32 private String displayName;
Note:
See TracChangeset
for help on using the changeset viewer.