-
Notifications
You must be signed in to change notification settings - Fork 26
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
Write data as COGs by default #181
Comments
is there any way to directly write the result of a stack as a cog now? 🤔 |
Did you try to pass |
What I'm trying to do is to stack all of the bands in a single COG, but, for me this is not working: # Create the reader
reader = Reader()
# Open your product
prod = reader.open(product_path, remove_tmp=True)
ok_bands = prod.get_existing_bands()
prod.stack(ok_bands, stack_path="stack_COG.tiff", driver="COG", **{TO_REFLECTANCE: False}) Not sure what is the proper way of doing this, but I would like as well to resample all the bands to the higher resolution one instead of the lower resolution one. 🤔 I might open a new issue instead of just spamming here -> #202 |
It would be a good feature to write all the files on disk as COGs.
The text was updated successfully, but these errors were encountered: