SymDifference

2021/10/30

# gma.vesp.Geometry.SymDifference(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 = 'SymDifference.shp'

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

结果对比: