relate method

Returns the DE-9IM {@link IntersectionMatrix} for the two Geometrys.

@param g the Geometry with which to compare this Geometry @return an {@link IntersectionMatrix} describing the intersections of the interiors, boundaries and exteriors of the two Geometrys

Implementation

IntersectionMatrix relate(Geometry g) {
  checkNotGeometryCollection(this);
  checkNotGeometryCollection(g);
  return RelateOp.relateStatic(this, g);
}