1
Proyeksi ulang skrip dengan Python dengan GDAL
Saya mengalami banyak masalah dengan GDAL. Selain hanya kadang-kadang kurang dokumentasi, tampaknya ada sedikit dukungan di Python. Ngomong-ngomong, ini hanyalah skrip proyek kumpulan yang berjalan demikian: source_file = gdal.Open(filepath.encode("ascii")) source_wkt = source_file.GetProjectionRef() source_srs = osr.SpatialReference() source_srs.ImportFromWkt(source_wkt) reproj_file = gdal.AutoCreateWarpedVRT(source_file, source_wkt, dest_wkt) gdal.ReprojectImage(source_file, reproj_file, source_wkt, dest_wkt) reproj_attributes = reproj_file.GetGeoTransform() driver = …