Erase

2021/10/30

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


功能:【擦除】。从第一个矢量中去除与第二个矢量交叉的部分。

参数:

 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 = 'Erase.shp'

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

结果对比: