add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,28 @@
# gdalinfo
> 列出有关GDAL支持的栅格数据集的各种信息。
> 更多信息:<https://gdal.org/programs/gdalinfo.html>。
- 列出所有支持的栅格格式:
`gdalinfo --formats`
- 列出有关特定栅格数据集的信息:
`gdalinfo {{path/to/input.tif}}`
- 以JSON格式列出有关特定栅格数据集的信息
`gdalinfo -json {{path/to/input.tif}}`
- 显示特定栅格数据集的直方图值:
`gdalinfo -hist {{path/to/input.tif}}`
- 列出有关网络地图服务WMS的信息
`gdalinfo WMS:{{https://services.meggsimum.de/geoserver/ows}}`
- 列出有关网络地图服务WMS中特定数据集的信息
`gdalinfo WMS:{{https://services.meggsimum.de/geoserver/ows}} -sd {{4}}`