Package com.vividsolutions.jump.qa.diff
Class BufferGeometryMatcher
- java.lang.Object
-
- com.vividsolutions.jump.qa.diff.BufferGeometryMatcher
-
- All Implemented Interfaces:
DiffGeometryMatcher
public class BufferGeometryMatcher extends Object implements DiffGeometryMatcher
Matches geometries based on whether each Geometry is contained in the other's buffer. This is equivalent to each geometry being entirely within the distance tolerance of the other.
-
-
Field Summary
Fields Modifier and Type Field Description static double
ERROR_TOLERANCE
-
Constructor Summary
Constructors Constructor Description BufferGeometryMatcher(double tolerance)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.locationtech.jts.geom.Geometry
getQueryGeometry()
boolean
isMatch(org.locationtech.jts.geom.Geometry geom)
static boolean
isMatch(org.locationtech.jts.geom.Geometry g1, org.locationtech.jts.geom.Geometry g2, double tolerance)
Computes whether two geometries match under this similarity test.static double
maxOrthogonalDistance(org.locationtech.jts.geom.Envelope env1, org.locationtech.jts.geom.Envelope env2)
void
setQueryGeometry(org.locationtech.jts.geom.Geometry geom)
-
-
-
Field Detail
-
ERROR_TOLERANCE
public static final double ERROR_TOLERANCE
- See Also:
- Constant Field Values
-
-
Method Detail
-
isMatch
public static boolean isMatch(org.locationtech.jts.geom.Geometry g1, org.locationtech.jts.geom.Geometry g2, double tolerance)
Computes whether two geometries match under this similarity test. This is not the most efficient way of executing this predicate for multiple geometries.- Parameters:
g1
- a Geometryg2
- a Geometry- Returns:
- true if the geometries match under this comparison operation
-
maxOrthogonalDistance
public static double maxOrthogonalDistance(org.locationtech.jts.geom.Envelope env1, org.locationtech.jts.geom.Envelope env2)
-
setQueryGeometry
public void setQueryGeometry(org.locationtech.jts.geom.Geometry geom)
- Specified by:
setQueryGeometry
in interfaceDiffGeometryMatcher
-
getQueryGeometry
public org.locationtech.jts.geom.Geometry getQueryGeometry()
- Specified by:
getQueryGeometry
in interfaceDiffGeometryMatcher
-
isMatch
public boolean isMatch(org.locationtech.jts.geom.Geometry geom)
- Specified by:
isMatch
in interfaceDiffGeometryMatcher
-
-