Module org.elasticsearch.server
Class ScriptDocValues.GeoPoints
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<T>
org.elasticsearch.index.fielddata.ScriptDocValues<V>
org.elasticsearch.index.fielddata.ScriptDocValues.BaseGeometry<GeoPoint,GeoPoint>
org.elasticsearch.index.fielddata.ScriptDocValues.GeoPoints
- All Implemented Interfaces:
Iterable<GeoPoint>
,Collection<GeoPoint>
,List<GeoPoint>
,ScriptDocValues.Geometry
- Enclosing class:
- ScriptDocValues<T>
public static class ScriptDocValues.GeoPoints
extends ScriptDocValues.BaseGeometry<GeoPoint,GeoPoint>
implements ScriptDocValues.Geometry
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.index.fielddata.ScriptDocValues
ScriptDocValues.BaseGeometry<T extends SpatialPoint,
V>, ScriptDocValues.Booleans, ScriptDocValues.BytesRefs, ScriptDocValues.Dates, ScriptDocValues.Doubles, ScriptDocValues.DoublesSupplier, ScriptDocValues.Geometry, ScriptDocValues.GeometrySupplier<T extends SpatialPoint, V>, ScriptDocValues.GeoPoints, ScriptDocValues.Longs, ScriptDocValues.Strings, ScriptDocValues.StringsSupplier, ScriptDocValues.Supplier<T> -
Field Summary
Fields inherited from class org.elasticsearch.index.fielddata.ScriptDocValues
supplier
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble
arcDistance
(double lat, double lon) double
arcDistanceWithDefault
(double lat, double lon, double defaultValue) double
geohashDistance
(String geohash) double
geohashDistanceWithDefault
(String geohash, double defaultValue) get
(int index) Returns the bounding box of this geometryReturns the centroid of this geometryint
Returns the dimensional type of this geometryReturns the suggested label positiondouble
getLat()
double[]
getLats()
double
getLon()
double[]
getLons()
double
Returns the height of the bounding box diagonal in the spherical Mercator projection (meters)double
Returns the width of the bounding box diagonal in the spherical Mercator projection (meters)getValue()
double
planeDistance
(double lat, double lon) double
planeDistanceWithDefault
(double lat, double lon, double defaultValue) int
size()
returns the size of the geometryMethods inherited from class org.elasticsearch.index.fielddata.ScriptDocValues
add, getSupplier, remove, replaceAll, set, sort, throwIfBeyondLength, throwIfEmpty
Methods inherited from class java.util.AbstractList
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, subList
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
addAll, contains, containsAll, isEmpty, removeAll, retainAll, spliterator, toArray, toArray
-
Constructor Details
-
GeoPoints
-
-
Method Details
-
getValue
-
getLat
public double getLat() -
getLats
public double[] getLats() -
getLons
public double[] getLons() -
getLon
public double getLon() -
get
-
size
public int size()Description copied from interface:ScriptDocValues.Geometry
returns the size of the geometry- Specified by:
size
in interfaceCollection<GeoPoint>
- Specified by:
size
in interfaceList<GeoPoint>
- Specified by:
size
in interfaceScriptDocValues.Geometry
- Specified by:
size
in classAbstractCollection<GeoPoint>
-
arcDistance
public double arcDistance(double lat, double lon) -
arcDistanceWithDefault
public double arcDistanceWithDefault(double lat, double lon, double defaultValue) -
planeDistance
public double planeDistance(double lat, double lon) -
planeDistanceWithDefault
public double planeDistanceWithDefault(double lat, double lon, double defaultValue) -
geohashDistance
-
geohashDistanceWithDefault
-
getDimensionalType
public int getDimensionalType()Description copied from class:ScriptDocValues.BaseGeometry
Returns the dimensional type of this geometry- Specified by:
getDimensionalType
in interfaceScriptDocValues.Geometry
- Specified by:
getDimensionalType
in classScriptDocValues.BaseGeometry<GeoPoint,
GeoPoint>
-
getCentroid
Description copied from class:ScriptDocValues.BaseGeometry
Returns the centroid of this geometry- Specified by:
getCentroid
in interfaceScriptDocValues.Geometry
- Specified by:
getCentroid
in classScriptDocValues.BaseGeometry<GeoPoint,
GeoPoint>
-
getMercatorWidth
public double getMercatorWidth()Description copied from interface:ScriptDocValues.Geometry
Returns the width of the bounding box diagonal in the spherical Mercator projection (meters)- Specified by:
getMercatorWidth
in interfaceScriptDocValues.Geometry
-
getMercatorHeight
public double getMercatorHeight()Description copied from interface:ScriptDocValues.Geometry
Returns the height of the bounding box diagonal in the spherical Mercator projection (meters)- Specified by:
getMercatorHeight
in interfaceScriptDocValues.Geometry
-
getBoundingBox
Description copied from class:ScriptDocValues.BaseGeometry
Returns the bounding box of this geometry- Specified by:
getBoundingBox
in interfaceScriptDocValues.Geometry
- Specified by:
getBoundingBox
in classScriptDocValues.BaseGeometry<GeoPoint,
GeoPoint>
-
getLabelPosition
Description copied from class:ScriptDocValues.BaseGeometry
Returns the suggested label position- Specified by:
getLabelPosition
in interfaceScriptDocValues.Geometry
- Specified by:
getLabelPosition
in classScriptDocValues.BaseGeometry<GeoPoint,
GeoPoint>
-