Uses of Interface
org.apache.lucene.spatial3d.geom.GeoArea

Packages that use GeoArea
Package
Description
Shapes implemented using 3D planar geometry.
  • Uses of GeoArea in org.apache.lucene.spatial3d.geom

    Modifier and Type
    Interface
    Description
    interface 
    Shape that implements GeoArea.
    interface 
    All bounding box shapes have this interface in common.
    interface 
    Interface describing circular area with a center and radius.
    interface 
    Distance shapes have capabilities of both geohashing and distance computation (which also includes point membership determination).
    interface 
    Interface describing a path.
    interface 
    Interface describing a GeoPointShape shape.It may represents a degenerated bounding box or a degenerated circle, hence it extends such interfaces.
    interface 
    GeoPolygon interface description.
    interface 
    Interface for a family of 3D rectangles, bounded on six sides by X,Y,Z limits
    Classes in org.apache.lucene.spatial3d.geom that implement GeoArea
    Modifier and Type
    Class
    Description
    class 
    Distance shapes have capabilities of both geohashing and distance computation (which also includes point membership determination).
    class 
    GeoCompositeAreaShape is a set of GeoAreaShape's, treated as a unit.
    class 
    GeoCompositePolygon is a specific implementation of GeoCompositeAreaShape, which implements GeoPolygon explicitly.
    class 
    Degenerate bounding box limited on two sides (top lat, bottom lat).
    Modifier and Type
    Method
    Description
    static GeoArea
    GeoAreaFactory.makeGeoArea(PlanetModel planetModel, double topLat, double bottomLat, double leftLon, double rightLon)
    Create a GeoArea of the right kind given the specified bounds.
    static GeoArea
    GeoAreaFactory.makeGeoArea(PlanetModel planetModel, double minX, double maxX, double minY, double maxY, double minZ, double maxZ)
    Create a GeoArea of the right kind given (x,y,z) bounds.