File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed
examples/serve/panels-demo/my_viewer_ext Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 6
6
function no longer worked with irregular grid mappings, such as Sentinel-3 data,
7
7
due to changes introduced in version 1.8.0. (#1114)
8
8
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
+
10
15
## Changes in 1.8.0
11
16
12
17
### Enhancements
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def render_panel(
54
54
# multiple=True,
55
55
)
56
56
57
- # interesting, when multiple=True
57
+ # when multiple=True
58
58
variable_names = get_variables (dataset )
59
59
select_variables = "" # variable_names , when multiple=True
60
60
select_variables = Select (
@@ -65,9 +65,7 @@ def render_panel(
65
65
# multiple=True,
66
66
)
67
67
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})
71
69
72
70
controls = Box (
73
71
children = [select_places , select_variables , button ],
@@ -240,6 +238,8 @@ def update_plot(
240
238
)
241
239
).properties (width = 560 , height = 260 )
242
240
241
+ update_last_timelabel (time_label )
242
+
243
243
return chart
244
244
245
245
You can’t perform that action at this time.
0 commit comments