Geometry.SpatiallyContains

Geometry.SpatiallyContains method

确定此几何图形在空间上是否包含指定的几何图形。

public bool SpatiallyContains(IGeometry other)
范围类型描述
otherIGeometry一个几何。

返回值

true如果此几何图形“在空间上包含”另一个几何图形。false否则.

例外

例外(健康)状况
ArgumentNullException参数是null.
ArgumentException其中一个几何图形无效,无法完成操作。
ArgumentExceptionSpatialReferenceSystem几何形状不等价。 您可以使用SpatialReferenceSystemTransformation为了将几何图形转换为相同的 spatial 参考系统。

评论

此方法根据 DE-9IM 交集矩阵测试一个几何体是否包含另一个几何体。 这个方法等同于:

other.Within(this);

也可以看看