Uses of Interface
org.locationtech.spatial4j.shape.Circle
-
Packages that use Circle Package Description org.locationtech.spatial4j.context SpatialContext implementations are the facade to the Spatial4j API.org.locationtech.spatial4j.distance Ways to calculate distance.org.locationtech.spatial4j.io Reading & writing shapes in various forms.org.locationtech.spatial4j.shape Shapes are the core geometry objects that Spatial4j provides.org.locationtech.spatial4j.shape.impl org.locationtech.spatial4j.shape.jts -
-
Uses of Circle in org.locationtech.spatial4j.context
Methods in org.locationtech.spatial4j.context that return Circle Modifier and Type Method Description Circle
SpatialContext. makeCircle(double x, double y, double distance)
Deprecated.Circle
SpatialContext. makeCircle(Point point, double distance)
Deprecated. -
Uses of Circle in org.locationtech.spatial4j.distance
Methods in org.locationtech.spatial4j.distance with parameters of type Circle Modifier and Type Method Description double
CartesianDistCalc. area(Circle circle)
double
DistanceCalculator. area(Circle circle)
double
GeodesicSphereDistCalc. area(Circle circle)
-
Uses of Circle in org.locationtech.spatial4j.io
Methods in org.locationtech.spatial4j.io that return Circle Modifier and Type Method Description Circle
BinaryCodec. readCircle(DataInput dataInput)
protected Circle
GeoJSONReader. readCircle(org.noggit.JSONParser parser)
Methods in org.locationtech.spatial4j.io with parameters of type Circle Modifier and Type Method Description void
BinaryCodec. writeCircle(DataOutput dataOutput, Circle c)
-
Uses of Circle in org.locationtech.spatial4j.shape
Methods in org.locationtech.spatial4j.shape that return Circle Modifier and Type Method Description Circle
ShapeFactory. circle(double x, double y, double distance)
Construct a circle.Circle
ShapeFactory. circle(Point point, double distance)
Construct a circle. -
Uses of Circle in org.locationtech.spatial4j.shape.impl
Classes in org.locationtech.spatial4j.shape.impl that implement Circle Modifier and Type Class Description class
CircleImpl
A circle, also known as a point-radius, based on aDistanceCalculator
which does all the work.class
GeoCircle
A circle as it exists on the surface of a sphere.Methods in org.locationtech.spatial4j.shape.impl that return Circle Modifier and Type Method Description Circle
ShapeFactoryImpl. circle(double x, double y, double distance)
Circle
ShapeFactoryImpl. circle(Point point, double distance)
Circle
CircleImpl. getBuffered(double distance, SpatialContext ctx)
Circle
PointImpl. getBuffered(double distance, SpatialContext ctx)
Methods in org.locationtech.spatial4j.shape.impl with parameters of type Circle Modifier and Type Method Description static boolean
CircleImpl. equals(Circle thiz, Object o)
AllCircle
implementations should use this definition ofObject.equals(Object)
.static int
CircleImpl. hashCode(Circle thiz)
AllCircle
implementations should use this definition ofObject.hashCode()
.SpatialRelation
CircleImpl. relate(Circle circle)
-
Uses of Circle in org.locationtech.spatial4j.shape.jts
Methods in org.locationtech.spatial4j.shape.jts that return Circle Modifier and Type Method Description Circle
JtsPoint. getBuffered(double distance, SpatialContext ctx)
Methods in org.locationtech.spatial4j.shape.jts with parameters of type Circle Modifier and Type Method Description SpatialRelation
JtsGeometry. relate(Circle circle)
-