(no commit message)
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Tue, 1 Aug 2006 12:05:06 +0000 (12:05 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Tue, 1 Aug 2006 12:05:06 +0000 (12:05 +0000)
gps/src/org/wamblee/gps/coordinates/CoordinateSystem.java [moved from gps/src/org/wamblee/gpx/CoordinateSystem.java with 96% similarity]
gps/src/org/wamblee/gps/coordinates/Coordinates.java [moved from gps/src/org/wamblee/gpx/Coordinates.java with 97% similarity]
gps/src/org/wamblee/gps/coordinates/Point.java [moved from gps/src/org/wamblee/gpx/Point.java with 97% similarity]
gps/src/org/wamblee/gps/coordinates/ReferenceCoordinateSystem.java [moved from gps/src/org/wamblee/gpx/ReferenceCoordinateSystem.java with 98% similarity]
gps/src/org/wamblee/gps/coordinates/SphericalCoordinateSystem.java [moved from gps/src/org/wamblee/gpx/SphericalCoordinateSystem.java with 98% similarity]
gps/src/org/wamblee/gps/coordinates/Wgs84CoordinateSystem.java [moved from gps/src/org/wamblee/gpx/Wgs84CoordinateSystem.java with 98% similarity]
gps/src/org/wamblee/gps/track/Track.java [moved from gps/src/org/wamblee/gpx/Track.java with 95% similarity]
gps/src/org/wamblee/gps/track/TrackPoint.java [moved from gps/src/org/wamblee/gpx/TrackPoint.java with 86% similarity]
gps/src/org/wamblee/gpx/GpxPlotter.java

similarity index 96%
rename from gps/src/org/wamblee/gpx/CoordinateSystem.java
rename to gps/src/org/wamblee/gps/coordinates/CoordinateSystem.java
index c88b8069e77b97299ee850e1f1a2debb5a1f7b98..e88d4833af61de19a7aebde85bff4c68ba6787ef 100644 (file)
@@ -14,7 +14,8 @@
  * limitations under the License.
  */ 
 
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
+
 
 /**
  * Represents a coordinate system. 
similarity index 97%
rename from gps/src/org/wamblee/gpx/Coordinates.java
rename to gps/src/org/wamblee/gps/coordinates/Coordinates.java
index cfca9dd5e450a563344095118e566e59ec50942f..b1fc92643ffc10b480bce77fb4ad2496fff74c28 100644 (file)
@@ -14,7 +14,7 @@
  * limitations under the License.
  */ 
 
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
 
 /**
  * Coordinates in some 3-dimensional coordinate system.  
similarity index 97%
rename from gps/src/org/wamblee/gpx/Point.java
rename to gps/src/org/wamblee/gps/coordinates/Point.java
index d04ec8618bba04914a2662df9fbdbb41958c1da2..382bb5a5e07fc92bd652c35bfd91f49b8559a3e6 100644 (file)
@@ -14,7 +14,8 @@
  * limitations under the License.
  */ 
 
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
+
 
 /**
  * Represents a point in some coordinate system. 
similarity index 98%
rename from gps/src/org/wamblee/gpx/ReferenceCoordinateSystem.java
rename to gps/src/org/wamblee/gps/coordinates/ReferenceCoordinateSystem.java
index 7c4afb458c00d004376e67edb3265de0dd16dd17..f3ed69cb80aa6b7c382a5fb991945ec1f25adb73 100644 (file)
@@ -14,7 +14,8 @@
  * limitations under the License.
  */
 
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
+
 
 /**
  * Reference coordinate system which is the basis for defining metrics.
similarity index 98%
rename from gps/src/org/wamblee/gpx/SphericalCoordinateSystem.java
rename to gps/src/org/wamblee/gps/coordinates/SphericalCoordinateSystem.java
index 607c0a49a00bb23a636333582b1c93d04fa9ae60..31232302f70c1d36db8029dbf6ab324584db6c4c 100644 (file)
  * limitations under the License.
  */ 
 
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
 
 import static java.lang.Math.PI;
 import static java.lang.Math.cos;
 import static java.lang.Math.sin;
 
+
 /**
  * Represents the coordinate system for a GPS measurement identified by
  * <ul>
similarity index 98%
rename from gps/src/org/wamblee/gpx/Wgs84CoordinateSystem.java
rename to gps/src/org/wamblee/gps/coordinates/Wgs84CoordinateSystem.java
index 94f7ba7b3e5140f30c794b18a3b9375e19b11413..9ccabd876d8605e82f1702357451e6d2ac005bd0 100644 (file)
  * limitations under the License.
  */ 
 
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
 
 import static java.lang.Math.PI;
 import static java.lang.Math.cos;
 import static java.lang.Math.sin;
 
+
 /**
  * Represents the WGS 84 coordinate system for a GPS measurement identified by
  * <ul>
similarity index 95%
rename from gps/src/org/wamblee/gpx/Track.java
rename to gps/src/org/wamblee/gps/track/Track.java
index 5d2532938aa19ca892cd65c91a3ad140337f18ee..2b8d9c778b9828d5eb107c63d8f970f81e6fd1ae 100644 (file)
  * limitations under the License.
  */ 
 
-package org.wamblee.gpx;
+package org.wamblee.gps.track;
 
 import java.util.ArrayList;
 import java.util.List;
 
+import org.wamblee.gps.coordinates.Point;
+
 /**
  * Represents a GPS track. 
  */
similarity index 86%
rename from gps/src/org/wamblee/gpx/TrackPoint.java
rename to gps/src/org/wamblee/gps/track/TrackPoint.java
index 9be99bfc99ea77607191531e5473008371b4b46a..08d188250b9f367b23f01398a3838154f86ed844 100644 (file)
  * limitations under the License.
  */ 
 
-package org.wamblee.gpx;
+package org.wamblee.gps.track;
+
+import org.wamblee.gps.coordinates.Coordinates;
+import org.wamblee.gps.coordinates.Point;
+import org.wamblee.gps.coordinates.Wgs84CoordinateSystem;
 
 
 /**
index 8cb03a191d24f8a8e545cbcb36d7fbfdc9949e25..19a145d1679dfb69244f9f88a60a3daaebd94966 100644 (file)
@@ -37,6 +37,10 @@ import org.jfree.chart.plot.PlotOrientation;
 import org.jfree.data.xy.XYSeries;
 import org.jfree.data.xy.XYSeriesCollection;
 import org.wamblee.general.Pair;
+import org.wamblee.gps.coordinates.Point;
+import org.wamblee.gps.coordinates.ReferenceCoordinateSystem;
+import org.wamblee.gps.track.Track;
+import org.wamblee.gps.track.TrackPoint;
 import org.wamblee.xml.DomUtils;
 import org.xml.sax.SAXException;