Interface GeoPoint
public interface GeoPoint
A point in the geocentric coordinate system.
- Author:
- Nicolas Helleringer
-
Method Summary
-
Method Details
-
latitude
double latitude()- Returns:
- the latitude, in degrees
-
longitude
double longitude()- Returns:
- the longitude, in degrees
-
of
Create aGeoPoint
from a latitude and a longitude.- Parameters:
latitude
- The latitude of the GeoPoint, in degrees.longitude
- The longitude of the GeoPoint, in degrees.- Returns:
- The corresponding
GeoPoint
.
-