Uses of Interface
org.apache.lucene.spatial3d.geom.GeoBBox
-
Packages that use GeoBBox 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 GeoBBox in org.apache.lucene.spatial3d
Methods in org.apache.lucene.spatial3d that return GeoBBox Modifier and Type Method Description (package private) static GeoBBox
Geo3DUtil. fromBox(PlanetModel planetModel, double minLatitude, double maxLatitude, double minLongitude, double maxLongitude)
Convert input parameters to a box. -
Uses of GeoBBox in org.apache.lucene.spatial3d.geom
Subinterfaces of GeoBBox 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 GeoBBox Modifier and Type Class Description (package private) class
GeoBaseBBox
All bounding box shapes can derive from this base class, which furnishes some common code(package private) class
GeoDegenerateHorizontalLine
Degenerate bounding box limited on two sides (left lon, right lon).(package private) class
GeoDegenerateLatitudeZone
This GeoBBox represents an area rectangle of one specific latitude with no longitude bounds.(package private) class
GeoDegenerateLongitudeSlice
Degenerate longitude slice.(package private) class
GeoDegeneratePoint
This class represents a degenerate point bounding box.class
GeoDegenerateVerticalLine
Degenerate bounding box limited on two sides (top lat, bottom lat).(package private) class
GeoLatitudeZone
This GeoBBox represents an area rectangle limited only in latitude.(package private) class
GeoLongitudeSlice
Bounding box limited on left and right.(package private) class
GeoNorthLatitudeZone
This GeoBBox represents an area rectangle limited only in south latitude.(package private) class
GeoNorthRectangle
Bounding box limited on three sides (bottom lat, left lon, right lon), including the north pole.(package private) class
GeoRectangle
Bounding box limited on four sides (top lat, bottom lat, left lon, right lon).(package private) class
GeoSouthLatitudeZone
This GeoBBox represents an area rectangle limited only in north latitude.(package private) class
GeoSouthRectangle
Bounding box limited on three sides (top lat, left lon, right lon).(package private) class
GeoWideDegenerateHorizontalLine
Degenerate bounding box wider than PI and limited on two sides (left lon, right lon).(package private) class
GeoWideLongitudeSlice
Bounding box wider than PI but limited on left and right sides ( left lon, right lon).(package private) class
GeoWideNorthRectangle
Bounding box wider than PI but limited on three sides ( bottom lat, left lon, right lon).(package private) class
GeoWideRectangle
Bounding box wider than PI but limited on four sides (top lat, bottom lat, left lon, right lon).(package private) class
GeoWideSouthRectangle
Bounding box wider than PI but limited on three sides (top lat, left lon, right lon).(package private) class
GeoWorld
Bounding box including the entire world.Methods in org.apache.lucene.spatial3d.geom that return GeoBBox Modifier and Type Method Description GeoBBox
GeoBBox. expand(double angle)
Expand box by specified angle.GeoBBox
GeoDegenerateHorizontalLine. expand(double angle)
GeoBBox
GeoDegenerateLatitudeZone. expand(double angle)
GeoBBox
GeoDegenerateLongitudeSlice. expand(double angle)
GeoBBox
GeoDegeneratePoint. expand(double angle)
GeoBBox
GeoDegenerateVerticalLine. expand(double angle)
GeoBBox
GeoLatitudeZone. expand(double angle)
GeoBBox
GeoLongitudeSlice. expand(double angle)
GeoBBox
GeoNorthLatitudeZone. expand(double angle)
GeoBBox
GeoNorthRectangle. expand(double angle)
GeoBBox
GeoRectangle. expand(double angle)
GeoBBox
GeoSouthLatitudeZone. expand(double angle)
GeoBBox
GeoSouthRectangle. expand(double angle)
GeoBBox
GeoWideDegenerateHorizontalLine. expand(double angle)
GeoBBox
GeoWideLongitudeSlice. expand(double angle)
GeoBBox
GeoWideNorthRectangle. expand(double angle)
GeoBBox
GeoWideRectangle. expand(double angle)
GeoBBox
GeoWideSouthRectangle. expand(double angle)
GeoBBox
GeoWorld. expand(double angle)
static GeoBBox
GeoBBoxFactory. makeGeoBBox(PlanetModel planetModel, double topLat, double bottomLat, double leftLon, double rightLon)
Create a geobbox of the right kind given the specified bounds.static GeoBBox
GeoBBoxFactory. makeGeoBBox(PlanetModel planetModel, LatLonBounds bounds)
Create a geobbox of the right kind given the specifiedLatLonBounds
.
-