|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectps2.GeoPoint
public class GeoPoint extends Object
A GeoPoint models a point on the earth. GeoPoints are immutable.
North latitudes and east longitudes are represented by positive numbers. South latitudes and west longitudes are represented by negative numbers. In each case, the precision is to a millionth of a degree.
The code may assume that the represented points are nearby Seattle.
Implementation hint:
Seattle is at approximately 47
deg. 36 min. 35 sec. N latitude and 122 deg. 19 min. 59 sec. W
longitude. There are 60 minutes per degree, and 60 seconds per
minute. So, in decimal, these correspond to 47.609722 North
latitude and -122.333056 East longitude. The constructor takes
integers in millionths of degrees. To create a new GeoPoint
located in Seattle, use: GeoPoint seattle = new
GeoPoint(47609722, -122333056);
Near Seattle, there are approximately 69.04 miles per degree of latitude and 47.574 miles per degree of longitude. An implementation should use these values when determining distances and headings.
latitude
- : real // measured in degrees latitude
longitude
- : real // measured in degrees longitude
Modifier and Type | Field and Description |
---|---|
static int |
MAX_LATITUDE
Maximum value the latitude field can have in this class. |
static int |
MAX_LONGITUDE
Maximum value the longitude field can have in this class. |
static double |
MILES_PER_DEGREE_LATITUDE
Approximation used to determine distances and headings using a "flat earth" simplification. |
static double |
MILES_PER_DEGREE_LONGITUDE
Approximation used to determine distances and headings using a "flat earth" simplification. |
static int |
MIN_LATITUDE
Minimum value the latitude field can have in this class. |
static int |
MIN_LONGITUDE
Minimum value the longitude field can have in this class. |
Constructor and Description |
---|
GeoPoint(int latitude,
int longitude)
|
Modifier and Type | Method and Description |
---|---|
double |
distanceTo(GeoPoint gp)
Computes the distance between GeoPoints. |
boolean |
equals(Object gp)
Compares the specified Object with this GeoPoint for equality. |
int |
getLatitude()
the latitude of the GeoPoint object, in millionths of degrees. |
int |
getLongitude()
the longitude of the GeoPoint object, in millionths of degrees. |
int |
hashCode()
|
double |
headingTo(GeoPoint gp)
Computes the compass heading between GeoPoints. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int MIN_LATITUDE
public static final int MAX_LATITUDE
public static final int MIN_LONGITUDE
public static final int MAX_LONGITUDE
public static final double MILES_PER_DEGREE_LATITUDE
public static final double MILES_PER_DEGREE_LONGITUDE
Constructor Detail |
---|
public GeoPoint(int latitude, int longitude)
Method Detail |
---|
public int getLatitude()
public int getLongitude()
public double distanceTo(GeoPoint gp)
public double headingTo(GeoPoint gp)
public boolean equals(Object gp)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |