Class 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.
    • Constructor Detail

      • BufferGeometryMatcher

        public BufferGeometryMatcher​(double tolerance)
    • 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 Geometry
        g2 - 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)
      • isMatch

        public boolean isMatch​(org.locationtech.jts.geom.Geometry geom)
        Specified by:
        isMatch in interface DiffGeometryMatcher