Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display sensor/platform/algorithm on variable selectors #64

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# v1.0.0 (Unreleased)

* Update expected JSON structures to match new snow-today-webapp-server specifications.
* Support arbitrary nesting of sub-regions specified in server-side data.
* Update appearance
* New Super Region splash selector on first launch of application.
* Legends are now displayed at the bottom of the map instead of as a draggable and
resizable element within the map viewport.
* Display sensor/platform/algorithm in variable selectors.


## Under the hood

* Migrate from Recoil to Jotai


# v0.16.0 (2024-02-08)

* Support multiple super-regions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const VariableSelector: React.FC<ITileIdentifier> = (props) => {
.filter(([variableId, params]) => params.layerType === 'raster')
.map(([variableId, params]) => (
<option key={variableId} value={variableId}>
{params[longNameParam]}
{`${params[longNameParam]} (${params.sensor}/${params.platform}/${params.algorithm})`}
</option>
))
);
Expand Down
Loading