Changeset 29390 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffsetTools.java
- Timestamp:
- 2013-03-24T06:51:38+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffsetTools.java
r29384 r29390 140 140 if( d < 950 ) return formatDistance(d, tr("m"), false ); 141 141 if( d < 9500 ) return formatDistance(d / 1000, tr("km"), true); 142 return formatDistance(d / 1000, tr("km"), false); 142 if( d < 1e6 ) return formatDistance(d / 1000, tr("km"), false); 143 return "\u221E"; 143 144 } 144 145
Note:
See TracChangeset
for help on using the changeset viewer.
