Package org.apache.lucene.geo
Class Line2D
- java.lang.Object
-
- org.apache.lucene.geo.Line2D
-
- All Implemented Interfaces:
Component2D
public final class Line2D extends java.lang.Object implements Component2D
2D geo line implementation represented as a balanced interval tree of edges.Line
Line2D
Construction takesO(n log n)
time for sorting and tree construction.relate()
areO(n)
, but for most practical lines are much faster than brute force.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.lucene.geo.Component2D
Component2D.WithinRelation
-
-
Field Summary
Fields Modifier and Type Field Description private double
maxX
maximum longitude of this geometry's bounding box areaprivate double
maxY
maximum latitude of this geometry's bounding box areaprivate double
minX
minimum longitude of this geometry's bounding box areaprivate double
minY
minimum latitude of this geometry's bounding box areaprivate EdgeTree
tree
lines represented as a 2-d interval tree.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(double x, double y)
relates this component2D with a pointstatic Component2D
create(Line... lines)
create a Line2D edge tree from provided array of Linestringsstatic Component2D
create(XYLine... lines)
create a Line2D edge tree from provided array of Linestringsdouble
getMaxX()
max X value for the componentdouble
getMaxY()
max Y value for the componentdouble
getMinX()
min X value for the componentdouble
getMinY()
min Y value for the componentPointValues.Relation
relate(double minX, double maxX, double minY, double maxY)
relates this component2D with a bounding boxPointValues.Relation
relateTriangle(double minX, double maxX, double minY, double maxY, double ax, double ay, double bx, double by, double cx, double cy)
relates this component2D with a triangleComponent2D.WithinRelation
withinTriangle(double minX, double maxX, double minY, double maxY, double ax, double ay, boolean ab, double bx, double by, boolean bc, double cx, double cy, boolean ca)
Compute the within relation of this component2D with a triangle-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.lucene.geo.Component2D
relateTriangle, withinTriangle
-
-
-
-
Field Detail
-
minY
private final double minY
minimum latitude of this geometry's bounding box area
-
maxY
private final double maxY
maximum latitude of this geometry's bounding box area
-
minX
private final double minX
minimum longitude of this geometry's bounding box area
-
maxX
private final double maxX
maximum longitude of this geometry's bounding box area
-
tree
private final EdgeTree tree
lines represented as a 2-d interval tree.
-
-
Method Detail
-
getMinX
public double getMinX()
Description copied from interface:Component2D
min X value for the component- Specified by:
getMinX
in interfaceComponent2D
-
getMaxX
public double getMaxX()
Description copied from interface:Component2D
max X value for the component- Specified by:
getMaxX
in interfaceComponent2D
-
getMinY
public double getMinY()
Description copied from interface:Component2D
min Y value for the component- Specified by:
getMinY
in interfaceComponent2D
-
getMaxY
public double getMaxY()
Description copied from interface:Component2D
max Y value for the component- Specified by:
getMaxY
in interfaceComponent2D
-
contains
public boolean contains(double x, double y)
Description copied from interface:Component2D
relates this component2D with a point- Specified by:
contains
in interfaceComponent2D
-
relate
public PointValues.Relation relate(double minX, double maxX, double minY, double maxY)
Description copied from interface:Component2D
relates this component2D with a bounding box- Specified by:
relate
in interfaceComponent2D
-
relateTriangle
public PointValues.Relation relateTriangle(double minX, double maxX, double minY, double maxY, double ax, double ay, double bx, double by, double cx, double cy)
Description copied from interface:Component2D
relates this component2D with a triangle- Specified by:
relateTriangle
in interfaceComponent2D
-
withinTriangle
public Component2D.WithinRelation withinTriangle(double minX, double maxX, double minY, double maxY, double ax, double ay, boolean ab, double bx, double by, boolean bc, double cx, double cy, boolean ca)
Description copied from interface:Component2D
Compute the within relation of this component2D with a triangle- Specified by:
withinTriangle
in interfaceComponent2D
-
create
public static Component2D create(Line... lines)
create a Line2D edge tree from provided array of Linestrings
-
create
public static Component2D create(XYLine... lines)
create a Line2D edge tree from provided array of Linestrings
-
-