Package org.apache.lucene.geo
Class Circle
java.lang.Object
org.apache.lucene.geo.Geometry
org.apache.lucene.geo.LatLonGeometry
org.apache.lucene.geo.Circle
Represents a circle on the Earth's surface defined by a center point and radius.
The circle is defined using:
- Center point (latitude/longitude in degrees)
- Radius in meters
Important Notes:
- The circle is approximated on the spherical Earth model
- For very large circles or circles near poles, consider using polygons instead
- Dateline crossing is handled automatically
Example usage:
// Create a circle with 1km radius around the Eiffel Tower
Circle circle = new Circle(48.8584, 2.2945, 1000);
// Create a query using this circle
Query query = LatLonShape.newDistanceQuery("location", circle);
- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
Constructor Summary
ConstructorsConstructorDescriptionCircle
(double lat, double lon, double radiusMeters) Creates a new circle from the supplied latitude/longitude center and a radius in meters.. -
Method Summary
Modifier and TypeMethodDescriptionboolean
double
getLat()
Returns the center's latitudedouble
getLon()
Returns the center's longitudedouble
Returns the radius in metersint
hashCode()
protected Component2D
get a Component2D from the geometry objecttoString()
Methods inherited from class org.apache.lucene.geo.LatLonGeometry
create
-
Constructor Details
-
Circle
public Circle(double lat, double lon, double radiusMeters) Creates a new circle from the supplied latitude/longitude center and a radius in meters..
-
-
Method Details
-
getLat
public double getLat()Returns the center's latitude -
getLon
public double getLon()Returns the center's longitude -
getRadius
public double getRadius()Returns the radius in meters -
toComponent2D
Description copied from class:Geometry
get a Component2D from the geometry object- Specified by:
toComponent2D
in classGeometry
-
equals
-
hashCode
public int hashCode() -
toString
-