Interface GeoPoint
-
public interface GeoPointA point in the geocentric coordinate system.- Author:
- Nicolas Helleringer
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default doublegetLatitude()Deprecated.Uselatitude()instead.default doublegetLongitude()Deprecated.Uselongitude()instead.doublelatitude()doublelongitude()static GeoPointof(double latitude, double longitude)Create aGeoPointfrom a latitude and a longitude.
-
-
-
Method Detail
-
latitude
double latitude()
- Returns:
- the latitude, in degrees
-
getLatitude
@Deprecated default double getLatitude()
Deprecated.Uselatitude()instead.- Returns:
- the latitude, in degrees
-
longitude
double longitude()
- Returns:
- the longitude, in degrees
-
getLongitude
@Deprecated default double getLongitude()
Deprecated.Uselongitude()instead.- Returns:
- the longitude, in degrees
-
-