Changeset 15961 in osm for applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/Scale.java
- Timestamp:
- 2009-06-17T09:46:26+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/Scale.java
r13497 r15961 6 6 * view is split in 2x2 bounding boxes and X3 is 3x3 boxes. 7 7 * SQUARE_100M is a special value where bounding boxes have a fixed size of 100x100 meters 8 * and east,north are rounded to the lowest 100 meter as well, thus none of the bounding boxes 8 * and east,north are rounded to the lowest 100 meter as well, thus none of the bounding boxes 9 9 * are overlapping each others. 10 10 */ 11 public enum Scale { 12 X1("1"), 11 public enum Scale { 12 X1("1"), 13 13 X2("2"), 14 14 X3("3"), … … 19 19 */ 20 20 public final String value; 21 21 22 22 Scale(String value) { 23 23 this.value = value;
Note:
See TracChangeset
for help on using the changeset viewer.
