Sentinel - get all data bands? (10m or 20m). #196
Replies: 2 comments 4 replies
-
You can grab as many bands at a time as you want, but the output format needs to support it. E.g. if you give 4 bands to a PNG it might make the last one alpha as default. But a format like "numpy tile" can output as many bands as you want. Just pass four items to |
Beta Was this translation helpful? Give feedback.
-
@RichardScottOZ, following @kylebarron excellent response in the STAC reader we use If you want bands B01, B02 you'll need to pass rio-tiler-pds docs: https://cogeotiff.github.io/rio-tiler-pds/usage/sentinel/#cog-only-l2a-available-for-now
titiler-pds uses as @kylebarron mentioned, to return more than 3 bands in a native datatype (uint16), you'll need to use the NumpyTile or Tiff format. Docs: https://developmentseed.org/titiler/concepts/output_format/ |
Beta Was this translation helpful? Give feedback.
-
Is your mosaic tiler idea only supposed to grab 3 bands at a time? e.g. could hack to return say, the 4 10m Sentinel bands? Thanks!
My use case to modify this is to grab data mosaics, the visualisation doesn't matter, just the original DNs.
Getting a web map application that can visualise any 3 band look is certainly a nice bonus though.
Beta Was this translation helpful? Give feedback.
All reactions