-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gdalbuildvrt: add page #4941
gdalbuildvrt: add page #4941
Conversation
The build for this PR failed with the following error(s):
Please fix the error(s) and push again. |
The build for this PR failed with the following error(s):
Please fix the error(s) and push again. |
The build for this PR failed with the following error(s):
Please fix the error(s) and push again. |
@RobinKohrs Could you please sign the license/CLA to pass the check? |
@navarroaxel Sure thing! sorry about that. I'm completely new to this and just wanted the help on the command line. Thanks for pointing out to that. |
The build for this PR failed with the following error(s):
Please fix the error(s) and push again. |
The build for this PR failed with the following error(s):
Please fix the error(s) and push again. |
pages/common/gdalbuildvrt.md
Outdated
|
||
- Make a virtual mosaic from files whose name is specified in a text file: | ||
|
||
`gdalbuildvrt -input_file_list {{ my_list.txt }} {{ output.vrt }}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`gdalbuildvrt -input_file_list {{ my_list.txt }} {{ output.vrt }}` | |
`gdalbuildvrt -input_file_list {{path/to/list.txt}} {{path/to/output.vrt}}` |
pages/common/gdalbuildvrt.md
Outdated
|
||
- Make a RGB virtual mosaic from 3 single-band input files: | ||
|
||
`gdalbuildvrt -separate {{ rgb.vrt }} {{ red.tif green.tif blue.tif }}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`gdalbuildvrt -separate {{ rgb.vrt }} {{ red.tif green.tif blue.tif }}` | |
`gdalbuildvrt -separate {{path/to/rgb.vrt}} {{path/to/red.tif}] {{path/to/green.tif}} {{path/to/blue.tif}}` |
pages/common/gdalbuildvrt.md
Outdated
|
||
- Make a virtual mosaic with blue background colour (RGB: 0 0 255): | ||
|
||
`gdalbuildvrt -hidenodata -vrtnodata "0 0 255" {{ output.vrt }} {{ input_folder/*.tif }}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`gdalbuildvrt -hidenodata -vrtnodata "0 0 255" {{ output.vrt }} {{ input_folder/*.tif }}` | |
`gdalbuildvrt -hidenodata -vrtnodata "{{0 0 255}}" {{path/to/output.vrt}} {{path/to/input_directory/*.tif}}` |
Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @RobinKohrs! Looks ok to me. Welcome to tldr pages 😺
Thanks so much!:) I'm relatively new to this and didn't know how exactly how to accept the changes @navarroaxel made. But glad it somehow worked. |
Don't worry @RobinKohrs You can check how to accept the suggestions here: https://docs.github.com/en/enterprise-server@2.21/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request |
common/
,linux/
, etc.)