Spaces:
Sleeping
Sleeping
Adding print statements
Browse files- pages/05_GOES_NBR.py +4 -0
pages/05_GOES_NBR.py
CHANGED
@@ -50,12 +50,16 @@ def Page():
|
|
50 |
map_instance.clear_layers()
|
51 |
if selected_fire == "North Complex":
|
52 |
map_instance.addLayer(map_instance.north_complex, map_instance.dNBRvisParams, 'North Complex GOES NBR', True)
|
|
|
53 |
elif selected_fire == "Dixie":
|
54 |
map_instance.addLayer(map_instance.dixie, map_instance.dNBRvisParams, 'Dixie Complex GOES NBR', True)
|
|
|
55 |
elif selected_fire == "Cameron Peak":
|
56 |
map_instance.addLayer(map_instance.cam_peak, map_instance.dNBRvisParams, 'Cameron Peak GOES NBR', True)
|
|
|
57 |
elif selected_fire == "August Complex":
|
58 |
map_instance.addLayer(map_instance.aug_complex, map_instance.dNBRvisParams, 'August Complex GOES NBR', True)
|
|
|
59 |
|
60 |
with solara.Column(style={"min-width": "500px"}):
|
61 |
map_widget = Map.element(
|
|
|
50 |
map_instance.clear_layers()
|
51 |
if selected_fire == "North Complex":
|
52 |
map_instance.addLayer(map_instance.north_complex, map_instance.dNBRvisParams, 'North Complex GOES NBR', True)
|
53 |
+
print("Adding North Complex layer")
|
54 |
elif selected_fire == "Dixie":
|
55 |
map_instance.addLayer(map_instance.dixie, map_instance.dNBRvisParams, 'Dixie Complex GOES NBR', True)
|
56 |
+
print("Adding Dixie layer")
|
57 |
elif selected_fire == "Cameron Peak":
|
58 |
map_instance.addLayer(map_instance.cam_peak, map_instance.dNBRvisParams, 'Cameron Peak GOES NBR', True)
|
59 |
+
print("Adding Cam Peak layer")
|
60 |
elif selected_fire == "August Complex":
|
61 |
map_instance.addLayer(map_instance.aug_complex, map_instance.dNBRvisParams, 'August Complex GOES NBR', True)
|
62 |
+
print("Adding August Complex layer")
|
63 |
|
64 |
with solara.Column(style={"min-width": "500px"}):
|
65 |
map_widget = Map.element(
|