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,20 @@
# gdalbuildvrt
> 从现有数据集列表构建虚拟数据集。
> 更多信息:<https://gdal.org/programs/gdalbuildvrt.html>。
- 从目录中包含的所有 TIFF 文件制作虚拟马赛克:
`gdalbuildvrt {{path/to/output.vrt}} {{path/to/input_directory/*.tif}}`
- 从文本文件中指定名称的文件制作虚拟马赛克:
`gdalbuildvrt -input_file_list {{path/to/list.txt}} {{path/to/output.vrt}}`
- 从 3 个单波段输入文件制作 RGB 虚拟马赛克:
`gdalbuildvrt -separate {{path/to/rgb.vrt}} {{path/to/red.tif}} {{path/to/green.tif}} {{path/to/blue.tif}}`
- 制作具有蓝色背景的虚拟马赛克RGB0 0 255
`gdalbuildvrt -hidenodata -vrtnodata "{{0 0 255}}" {{path/to/output.vrt}} {{path/to/input_directory/*.tif}}`