Open
Description
It comes up over and over again, the range values. Recently in #31. A common example seems to be something like:
- "categorical" no-data values (e.g. -1, -3)
- One range with continuous data (e.g. >= 0)
Should we cater for this? I think the simplest solution would be to allow for value
an array with two values that can on one side ne null (for open-ended range) as defined also by the STAC Collection extents.
Then you could have something like:
{
...
"unit": "mm",
"classification:classes": [
{
"value": -1,
"name": "missing-value",
"description": "Missing value (no-data)",
"nodata": true
},
{
"value": -3,
"name": "no-coverage",
"description": "No coverage (no-data)",
"nodata": true
},
{
"value": [0, null],
"name": "data",
"description": "Actual data values in mm"
}
],
...
}