Uses of Interface
org.apache.lucene.spatial3d.geom.GeoCircle
-
Packages that use GeoCircle Package Description org.apache.lucene.spatial3d Lucene field & query support for the spatial geometry implemented inorg.apache.lucene.spatial3d.geom
.org.apache.lucene.spatial3d.geom Shapes implemented using 3D planar geometry. -
-
Uses of GeoCircle in org.apache.lucene.spatial3d
Methods in org.apache.lucene.spatial3d that return GeoCircle Modifier and Type Method Description (package private) static GeoCircle
Geo3DUtil. fromDistance(PlanetModel planetModel, double latitude, double longitude, double radiusMeters)
Convert input parameters to a circle. -
Uses of GeoCircle in org.apache.lucene.spatial3d.geom
Subinterfaces of GeoCircle in org.apache.lucene.spatial3d.geom Modifier and Type Interface Description interface
GeoPointShape
Interface describing a GeoPointShape shape.It may represents a degenerated bounding box or a degenerated circle, hence it extends such interfaces.Classes in org.apache.lucene.spatial3d.geom that implement GeoCircle Modifier and Type Class Description (package private) class
GeoBaseCircle
GeoCircles have all the characteristics of GeoBaseDistanceShapes, plus GeoSizeable.(package private) class
GeoDegeneratePoint
This class represents a degenerate point bounding box.(package private) class
GeoExactCircle
Circular area with a center and a radius that represents the surface distance to the center.(package private) class
GeoStandardCircle
Circular area with a center and cutoff angle that represents the latitude and longitude distance from the center where the planet will be cut.Methods in org.apache.lucene.spatial3d.geom that return GeoCircle Modifier and Type Method Description static GeoCircle
GeoCircleFactory. makeExactGeoCircle(PlanetModel planetModel, double latitude, double longitude, double radius, double accuracy)
Create an GeoCircle from a center, a radius and a desired accuracy.static GeoCircle
GeoCircleFactory. makeGeoCircle(PlanetModel planetModel, double latitude, double longitude, double cutoffAngle)
Create a GeoCircle from a center and a cutoff angle.
-