arcpy批量修改shp文件的空间参考坐标系Spatial Reference

arcpy批量修改shp文件的空间参考坐标系Spatial Reference

通过 Project 工具实现,由于相关参数过于复杂,可以通过工具箱操作一次,然后获取相应代码,在进行批量的操作。

将空间数据从一种坐标系投影到另一种坐标系。
--------
Project_management (in_dataset, out_dataset, out_coor_system, {transform_method}, {in_coor_system}, {preserve_shape}, {max_deviation})
------
in_dataset:要投影的要素类、要素图层或要素数据集。
out_dataset:将要写入结果的输出数据集。
out_coor_systemev:有效值是空间参考对象、扩展名为 .prj 的文件或坐标系的字符串表达形式。

实例:

# 通过坐标系工厂代码创建
>>> sr = arcpy.SpatialReference(4326)
>>> sr.name
u'GCS_WGS_1984'
>>> arcpy.Project_management("union", "union2.shp", sr)
 
# 通过已知文件获取
>>> sr1 = arcpy.Describe("20171127_GF1_172").spatialReference
 
# 通过工具箱转换
>>> arcpy.Project_management('union', 'union3.shp',
"GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',
SPHEROID['WGS_1984',6378137.0,298.257223563]],
PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]")

你可能感兴趣的:(python,arcpy,arcgis,python,arcpy,arcgis)