Home | History | Annotate | Download | only in navigation

Lines Matching defs:Position

8  * This class represents the position of an entity in the world.
14 public class Position {
22 /* An optional time to associate with this position - for historical tracking */
25 /* Degree position */
29 * A new position expressed in decimal format
34 public Position(double dblLat, double dblLng) throws InvalidPositionException {
40 * A new position expressed in decimal format and degrees
46 // public Position(double dblLat, double dblLng, double degree) throws InvalidPositionException {
52 * A new position expressed in DegMin format
59 public Position(int latDeg, float latMin, int latQuad, int lngDeg,
66 * A new position expressed in ALRS format
71 public Position(String lat, String lng) throws InvalidPositionException {
77 * A new position expressed in NMEA GPS message format:
85 public Position(String latNMEAGPS, String latQuad, String lngNMEAGPS, String lngQuad, String utcTimeStamp) {
117 * Add a reference time for this position - useful for historical tracking
135 * Prints out position using decimal format
136 * @return the position in decimal format
143 * Return the position latitude in decimal format
160 * Return the position longitude in decimal format
169 * Prints out position using DegMin format
170 * @return the position in DegMin Format
181 * Prints out the position latitude
190 * Prints out the position longitude
199 * Prints out the position latitude
208 * Prints out the position longitude
219 //NMEA GPS Position format:
220 Position p = new Position("4807.038", "N", "01131.000", "W", "123519");