Apply multi-band algorithm to MosaicJSON? #598
-
Hello, and thank you for this fantastic library! Is there a recommended method for creating a tile server that can apply a multi-band algorithm (e.g. For context, my goal is to create a tile server app with the following components:
If there is a better way to do this, suggestions are welcome! Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I'm not sure to get everything When you say about multi band, did you check https://cogeotiff.github.io/rio-tiler/advanced/custom_readers/#multibandsreader and the associated tiler https://developmentseed.org/titiler/api/titiler/core/factory/#multibandtilerfactory The issue for creating MosaicJSON using MultiBand, is that you need (in theory) one uniq identifier (spatial) for all the bands (e.g for Landsat it's the Landsat ID, for STAC it can be the STAC URL of the STAC Id). If you want to create a spatial mosaic with multi band dataset you need to:
|
Beta Was this translation helpful? Give feedback.
I'm not sure to get everything
When you say
mosaic
are you talking about spatial mosaic (merging files that cover different area) or combining multiple bands together?about multi band, did you check https://cogeotiff.github.io/rio-tiler/advanced/custom_readers/#multibandsreader and the associated tiler https://developmentseed.org/titiler/api/titiler/core/factory/#multibandtilerfactory
The issue for creating MosaicJSON using MultiBand, is that you need (in theory) one uniq identifier (spatial) for all the bands (e.g for Landsat it's the Landsat ID, for STAC it can be the STAC URL of the STAC Id).
If you want to create a spatial mosaic with multi band dataset you need to: