gdal中shapefile坐标度转换到栅格米
python gdal读取(ogr)shapefile的坐标表示为度,栅格数据的坐标为米。 以下代码展示读取shapefile文件的度坐标并转换为依赖栅格数据投影的坐标米。from osgeo import gdal,ogrdef world2Pixel(padfTransform, x, y): pixel = padfTransform[0] + x*padfTransfor...