Class Point
java.lang.Object
org.springframework.data.elasticsearch.utils.geohash.Point
- All Implemented Interfaces:
Geometry
/** Code copied from Elasticsearch 7.10, Apache License V2
https://github.com/elastic/elasticsearch/blob/7.10/libs/geo/src/main/java/org/elasticsearch/geometry/Point.java
Represents a Point on the earth's surface in decimal degrees and optional altitude in meters.
Represents a Point on the earth's surface in decimal degrees and optional altitude in meters.
-
Field Details
-
EMPTY
-
-
Constructor Details
-
Point
public Point(double x, double y) -
Point
public Point(double x, double y, double z)
-
-
Method Details
-
type
-
getY
public double getY() -
getX
public double getX() -
getZ
public double getZ() -
getLat
public double getLat() -
getLon
public double getLon() -
getAlt
public double getAlt() -
equals
-
hashCode
public int hashCode() -
visit
-
isEmpty
public boolean isEmpty() -
hasZ
public boolean hasZ() -
toString
-