Open
Description
has this remark:
The bands (and all dimensions that specify nominal dimension labels) are expected to be ordered as specified in the metadata if the bands parameter is set to null.
What does "ordered as specified in the metadata" mean practically?
Also, doesn't this heavily depends on STAC extensions in play (if any)?
For example, take a STAC Item like this (using the eo STAC extension):
{
"type": "Feature",
"assets": {
"B04": {
"eo:bands": [{"name": "B04"}],
...
"B05": {
"eo:bands": [{"name": "B05"}],
...
I assume the spirit of the remark above is to take band order ["B04", "B05"], but this comes from the "assets" mapping, which technically does not imply an order.