Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 c# 或 python 将我的 png 转换为 GeoTif ,我需要什么?我怎么能实现它?(我可以使用arcpy)
谢谢。
使用 Python 和 ArcPy 调用栅格转其他格式工具:
import arcpy arcpy.env.workspace = "/path/to/directory" arcpy.RasterToOtherFormat_conversion("in_images/myimage.png","out_images","TIFF")
这当然假设您的 PNG 已经进行了地理参考。如果没有,您需要先对其进行地理配准。这通常使用 ArcMap 的地理配准工具条完成,因为它需要手动干预。