Class GeoBBoxFactory

java.lang.Object
org.apache.lucene.spatial3d.geom.GeoBBoxFactory

public class GeoBBoxFactory extends Object
Factory for GeoBBox.
WARNING: This API is experimental and might change in incompatible ways in the next release.
  • Method Details

    • makeGeoBBox

      public static GeoBBox makeGeoBBox(PlanetModel planetModel, double topLat, double bottomLat, double leftLon, double rightLon)
      Create a geobbox of the right kind given the specified bounds.
      Parameters:
      planetModel - is the planet model
      topLat - is the top latitude
      bottomLat - is the bottom latitude
      leftLon - is the left longitude
      rightLon - is the right longitude
      Returns:
      a GeoBBox corresponding to what was specified.
    • makeGeoBBox

      public static GeoBBox makeGeoBBox(PlanetModel planetModel, LatLonBounds bounds)
      Create a geobbox of the right kind given the specified LatLonBounds.
      Parameters:
      planetModel - is the planet model
      bounds - are the bounds
      Returns:
      a GeoBBox corresponding to what was specified.