Union
洛 2021/10/30
# gma.vesp.Geometry.Union(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 = 'Union.shp'
vesp.Geometry.Union(InFile, MethodFile, OutFile)
1
2
3
4
5
6
7
2
3
4
5
6
7
结果对比: