Changeset 2512 in josm for trunk/src/org/openstreetmap/josm/data/coor
- Timestamp:
- 2009-11-24T10:45:04+01:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/coor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/CoordinateFormat.java
r1990 r2512 6 6 /** 7 7 * An enumeration of coordinate formats 8 * 8 * 9 9 */ 10 10 public enum CoordinateFormat { … … 27 27 /** 28 28 * Replies the display name of the format 29 * 29 * 30 30 * @return the display name 31 31 */ … … 43 43 /** 44 44 * Replies the default coordinate format to be use 45 * 45 * 46 46 * @return the default coordinate format 47 47 */ … … 52 52 /** 53 53 * Sets the default coordinate format 54 * 54 * 55 55 * @param format the default coordinate format 56 56 */ -
trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
r2457 r2512 1 1 // License: GPL. Copyright 2007 by Immanuel Scholz and others 2 2 package org.openstreetmap.josm.data.coor; 3 4 3 5 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 27 26 /** 28 27 * Replies true if lat is in the range [-90,90] 29 * 28 * 30 29 * @param lat the latitude 31 30 * @return true if lat is in the range [-90,90] … … 37 36 /** 38 37 * Replies true if lon is in the range [-180,180] 39 * 38 * 40 39 * @param lon the longitude 41 40 * @return true if lon is in the range [-180,180] -
trunk/src/org/openstreetmap/josm/data/coor/QuadTiling.java
r2422 r2512 1 1 // License: GPL. Copyright 2009 by Dave Hansen, others 2 2 package org.openstreetmap.josm.data.coor; 3 4 3 5 4 public class QuadTiling
Note:
See TracChangeset
for help on using the changeset viewer.