Reproject

2021/10/30

# gma.vesp.Basic.Reproject(InFile, OutFile, Projection, OutFormat = 'ESRI Shapefile')


功能:【重投影】。将矢量数据从一种坐标系投影到另一种坐标系。

参数:

 InFile:str。输入矢量文件路径。

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

 Projection: str||EPSG||WKT||Proj4||SpatRef||... 。输出矢量坐标系。

可选参数:

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


示例:(下载 示例矢量

from gma import vesp

InFile = 'China_Province_2022.shp'
OutFile = 'China_Province_2022_Reproject.shp'

# 重投影到 WGS 84 / NSIDC EASE-Grid 2.0 North(EPSF: 6931)
vesp.Basic.Reproject(InFile, OutFile, 6931)
1
2
3
4
5
6
7

结果对比: