Skip to content
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
## Changes in 1.4.1 (in development)

### Enhancements
* Improved xcube Server's STAC API:
* Added the `tileLevelMin`, `tileLevelMax`, `colorBarName`, `colorBarMax` and `colorBarMin` attributes to the `xcube:data_vars` property returned in a STAC item JSON schema of a dataset's data
variables.
* The `xcube:data_vars` in a STAC item will display the following example:

```json
"xcube:data_vars": [
{
"name": "gpp",
"dtype": "float32",
"dims": [],
"chunks": [],
"shape": [],
"attrs": {},
"tileLevelMax": 11,
"tileLevelMin": 10,
"colorBarName": "bwr",
"colorBarMax": 0,
"colorBarMin": 20
}
]
```

### Fixes

Expand Down
Loading