Hi all!
For an interactive application, I want to save some results in the backend. When saving as the gtiff
format, the data is saved as a Cloud Optimized Geotiff (COG) which I want to query. When saving my images, I get one COG per timestep. I would like to ensure that I am downloading the timestep that I am expecting. When looking at the result from the rasterio.open
, e.g.:
with rasterio.open(url) as src:
print(src.meta)
I am not getting any information on my timestep. I am seeing some information about the timestep in the url, but it would be cleaner and more flexible for me to add some metadata. How would I go about that?
Thanks!
Jaap