我一直致力于使用python ogr2ogr将MODIS Tiles Grid从正弦投影转换为lat长投影。
它确实运行良好,重新投影的shapefile会显示原始形状中不存在的一些线条,并且会产生许多不匹配。
Link to donwload the original MODIS Grid Tiles
有任何修复建议吗?
# my code in command line
ogr2ogr -s_srs "+proj=sinu +lon_0=0 +x_0=0 +y_0=0 +a=6371007.181 +b=6371007.181 +units=m +no_defs" -t_srs EPSG:4326 -f "ESRI Shapefile" "C:/path/tiles_mod.shp" "C:/path/tiles.shp"