Intersection

2021/10/30

# gma.vesp.Geometry.Intersection(InFile, MethodFile, OutFile, OutFormat = 'ESRI Shapefile')


功能:【交集】。取两个矢量的交集。

提示

与 Clip 相比,Intersection 工具会保留 MethodFile 相交部分的属性表。

参数:

 InFile:str。第一个矢量文件路径。

 MethodFile:str。第二个矢量文件路径。

 OutFile:str。输出矢量文件路径。

可选参数:

 OutFormat = str。输出矢量文件格式,默认为 ESRI Shapefile。其他格式详见 ToOtherFormat 函数。


示例:(下载 示例矢量

from gma import vesp

InFile = 'China_Province_2022.shp'
MethodFile = 'Method_Vector.shp'
OutFile = 'Intersection.shp'

vesp.Geometry.Intersection(InFile, MethodFile, OutFile)
1
2
3
4
5
6
7

结果对比: