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.
我正在使用 Python GDAL 包在各种格式之间转换光栅图像:ENVI、GeoTIFF、ERDAS Imagine、PCI Geomatics 等。我的图像是 UTM、WGS-84 和面向路径的,即从北向上旋转。我发现,在使用 GDAL 转换后,旋转总是丢失并且图像错误地朝北。我在 Python 中使用 CreateCopy 方法进行转换,例如,
newDataset = driver.CreateCopy(new.name, oldDataset)
将不胜感激任何建议。谢谢,
莫特