Skip to content

Commit

Permalink
Merge pull request #64 from nsidc/display-sensor-platform-algorithm-i…
Browse files Browse the repository at this point in the history
…n-dropdown

Display sensor/platform/algorithm on variable selectors
  • Loading branch information
mfisher87 authored Mar 6, 2024
2 parents af09883 + c5b3c67 commit 06d448b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
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

0 comments on commit 06d448b

Please sign in to comment.