Geometry.Overlaps
Contents
[
Hide
]Geometry.Overlaps method
Determines whether this geometry overlap with a specified geometry.
public bool Overlaps(IGeometry other)
Parameter | Type | Description |
---|---|---|
other | IGeometry | A geometry. |
Return Value
true
if this geometry is “spatially overlaps” another geometry. false
otherwise.
Exceptions
exception | condition |
---|---|
ArgumentNullException | Argument is null . |
ArgumentException | One of the geometries is invalid in such way that operation can not be finished. |
ArgumentException | SpatialReferenceSystem of geometries are not equivalent. You can use SpatialReferenceSystemTransformation in order to convert geometries to the same spatial reference system. |
Remarks
This method tests whether geometries are overlaps in terms of DE-9IM intersection matrix. Two geometries overlap if they have some but not all interior points in common and the intersection of the geometries have the same dimension as the geometries themselves. For two Point geometries or two Surface geometries this method is equivalent to:
this.Relate(other, "T*T***T**");
For two Line geometries this method is equivalent to:
this.Relate(other, "1*T***T**");
For two geometries with not equal Dimension
this method always returns false
. See OpenGIS Simple Features Specification for more details about DE-9IM and “spatially overlaps” relation.
See Also
- interface IGeometry
- class Geometry
- namespace Aspose.Gis.Geometries
- assembly Aspose.GIS