Skip to content

Commit

Permalink
Display sensor/platform/algorithm on variable selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Mar 6, 2024
1 parent af09883 commit 0c1c249
Showing 1 changed file with 1 addition and 1 deletion.
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 0c1c249

Please sign in to comment.