* limitations under the License.
*/
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
+
/**
* Represents a coordinate system.
* limitations under the License.
*/
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
/**
* Coordinates in some 3-dimensional coordinate system.
* limitations under the License.
*/
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
+
/**
* Represents a point in some coordinate system.
* limitations under the License.
*/
-package org.wamblee.gpx;
+package org.wamblee.gps.coordinates;
+
/**
* Reference coordinate system which is the basis for defining metrics.
* 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>
* 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>
* 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.
*/
* 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;
/**
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;