ToVector
洛 2021/10/30
# gma.rasp.Extraction.ToVector(InFile, OutVector, FieldName = 'Value', Band = 0, GeomType = 'Polygon', OutFormat = 'ESRI Shapefile')
功能:【栅格转矢量】。将栅格数据转换为矢量数据。
参数:
InFile:str
。输入栅格路径。
OutVector:str
。输出矢量路径。
可选参数:
FieldName = str
。输出矢量字段的名称。默认为 Value。
Band = int
。要转换的波段。默认转换第一个波段(0)。
GeomType = str
。矢量几何类型。默认为多边形('Polygon')。
OutFormat = str
。输出矢量文件格式,默认为 ESRI Shapefile。其他格式详见 vesp.ToOtherFormat 函数。
示例:
from gma import rasp
InFile = 'ESA_LC2020_TT.tif'
OutFile = 'ToVector.shp'
rasp.Extraction.ToVector(InFile, OutFile, GeomType = 'Polygon')
1
2
3
4
5
2
3
4
5
原始数据与转为矢量后数据对比: