Skip to content

Commit 80226d1

Browse files
committed
update Changes.md
1 parent ff41aba commit 80226d1

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
function no longer worked with irregular grid mappings, such as Sentinel-3 data,
77
due to changes introduced in version 1.8.0. (#1114)
88

9-
9+
### Other Changes
10+
11+
* Added demo panel `Spectral View` that creates a plot with the reflectances
12+
for one selected Place (Point) at a selected time for variables that
13+
represent wavelengths.
14+
1015
## Changes in 1.8.0
1116

1217
### Enhancements

examples/serve/panels-demo/my_viewer_ext/my_panel_3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def render_panel(
5454
# multiple=True,
5555
)
5656

57-
# interesting, when multiple=True
57+
# when multiple=True
5858
variable_names = get_variables(dataset)
5959
select_variables = "" # variable_names , when multiple=True
6060
select_variables = Select(
@@ -65,9 +65,7 @@ def render_panel(
6565
# multiple=True,
6666
)
6767

68-
button = Button(
69-
id="button", text="Update" # "ADD Place to Spectral View"
70-
) # , style={"maxWidth": 100})
68+
button = Button(id="button", text="Update") # , style={"maxWidth": 100})
7169

7270
controls = Box(
7371
children=[select_places, select_variables, button],
@@ -240,6 +238,8 @@ def update_plot(
240238
)
241239
).properties(width=560, height=260)
242240

241+
update_last_timelabel(time_label)
242+
243243
return chart
244244

245245

0 commit comments

Comments
 (0)