From: erik Date: Tue, 1 Aug 2006 12:05:06 +0000 (+0000) Subject: (no commit message) X-Git-Tag: BEFORE_MAVEN_MIGRATION~56 X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=d4609528c385016f7247db7d486f6e9e51b5053e;p=utils --- diff --git a/gps/src/org/wamblee/gpx/CoordinateSystem.java b/gps/src/org/wamblee/gps/coordinates/CoordinateSystem.java similarity index 96% rename from gps/src/org/wamblee/gpx/CoordinateSystem.java rename to gps/src/org/wamblee/gps/coordinates/CoordinateSystem.java index c88b8069..e88d4833 100644 --- a/gps/src/org/wamblee/gpx/CoordinateSystem.java +++ b/gps/src/org/wamblee/gps/coordinates/CoordinateSystem.java @@ -14,7 +14,8 @@ * limitations under the License. */ -package org.wamblee.gpx; +package org.wamblee.gps.coordinates; + /** * Represents a coordinate system. diff --git a/gps/src/org/wamblee/gpx/Coordinates.java b/gps/src/org/wamblee/gps/coordinates/Coordinates.java similarity index 97% rename from gps/src/org/wamblee/gpx/Coordinates.java rename to gps/src/org/wamblee/gps/coordinates/Coordinates.java index cfca9dd5..b1fc9264 100644 --- a/gps/src/org/wamblee/gpx/Coordinates.java +++ b/gps/src/org/wamblee/gps/coordinates/Coordinates.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.wamblee.gpx; +package org.wamblee.gps.coordinates; /** * Coordinates in some 3-dimensional coordinate system. diff --git a/gps/src/org/wamblee/gpx/Point.java b/gps/src/org/wamblee/gps/coordinates/Point.java similarity index 97% rename from gps/src/org/wamblee/gpx/Point.java rename to gps/src/org/wamblee/gps/coordinates/Point.java index d04ec861..382bb5a5 100644 --- a/gps/src/org/wamblee/gpx/Point.java +++ b/gps/src/org/wamblee/gps/coordinates/Point.java @@ -14,7 +14,8 @@ * limitations under the License. */ -package org.wamblee.gpx; +package org.wamblee.gps.coordinates; + /** * Represents a point in some coordinate system. diff --git a/gps/src/org/wamblee/gpx/ReferenceCoordinateSystem.java b/gps/src/org/wamblee/gps/coordinates/ReferenceCoordinateSystem.java similarity index 98% rename from gps/src/org/wamblee/gpx/ReferenceCoordinateSystem.java rename to gps/src/org/wamblee/gps/coordinates/ReferenceCoordinateSystem.java index 7c4afb45..f3ed69cb 100644 --- a/gps/src/org/wamblee/gpx/ReferenceCoordinateSystem.java +++ b/gps/src/org/wamblee/gps/coordinates/ReferenceCoordinateSystem.java @@ -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. diff --git a/gps/src/org/wamblee/gpx/SphericalCoordinateSystem.java b/gps/src/org/wamblee/gps/coordinates/SphericalCoordinateSystem.java similarity index 98% rename from gps/src/org/wamblee/gpx/SphericalCoordinateSystem.java rename to gps/src/org/wamblee/gps/coordinates/SphericalCoordinateSystem.java index 607c0a49..31232302 100644 --- a/gps/src/org/wamblee/gpx/SphericalCoordinateSystem.java +++ b/gps/src/org/wamblee/gps/coordinates/SphericalCoordinateSystem.java @@ -14,12 +14,13 @@ * 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 *