add new chinese translations
This commit is contained in:
16
pages.zh/common/gdalwarp.md
Normal file
16
pages.zh/common/gdalwarp.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# gdalwarp
|
||||
|
||||
> 图像重投影和变形工具。
|
||||
> 更多信息:<https://gdal.org/programs/gdalwarp.html>。
|
||||
|
||||
- 重投影栅格数据集:
|
||||
|
||||
`gdalwarp -t_srs {{EPSG:4326}} {{path/to/input.tif}} {{path/to/output.tif}}`
|
||||
|
||||
- 使用特定坐标裁剪栅格数据集:
|
||||
|
||||
`gdalwarp -te {{min_x}} {{min_y}} {{max_x}} {{max_y}} -te_srs {{EPSG:4326}} {{path/to/input.tif}} {{path/to/output.tif}}`
|
||||
|
||||
- 使用矢量图层裁剪栅格数据集:
|
||||
|
||||
`gdalwarp -cutline {{path/to/area_to_cut.geojson}} -crop_to_cutline {{path/to/input.tif}} {{path/to/output.tif}}`
|
Reference in New Issue
Block a user