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.
我有 GeoTiff 图像,其中包含每个像素的纬度和经度,而不是 x,y 坐标。
我的任务是在用户提供的多边形上裁剪此图像。目前我正在尝试使用 GDAL,但没有找到完美的解决方案。
要从光栅图像中裁剪或裁剪特定部分,请使用带有 geojson 或 shape 文件的 gdal 库。您需要 gdal-bin 来剪辑/裁剪光栅图像。使用gdalwarpwith-of参数来指定输出格式(默认 GTiff-geotiff),传递你的 geojson 路径,你的光栅图像路径,你想要存储输出的路径。完整的命令看起来像 gdalwarp -of GTiff -crop_to_cutline -cutline #.geojson #.tif #.tif
gdalwarp
-of
gdalwarp -of GTiff -crop_to_cutline -cutline #.geojson #.tif #.tif