Spaces:
Sleeping
Sleeping
Update pages/05_GOES_NBR.py
Browse files- pages/05_GOES_NBR.py +5 -0
pages/05_GOES_NBR.py
CHANGED
@@ -6,6 +6,11 @@ import ipywidgets as widgets
|
|
6 |
fireList = ["North Complex", "Dixie", "Cameron Peak", "August Complex"]
|
7 |
selected_fire = solara.reactive([fireList[0]])
|
8 |
dNBRvisParams = {'min': 0.0,'max': 0.8, 'palette': ['green', 'yellow','orange','red']}
|
|
|
|
|
|
|
|
|
|
|
9 |
'''
|
10 |
class Map(geemap.Map):
|
11 |
def __init__(self, **kwargs):
|
|
|
6 |
fireList = ["North Complex", "Dixie", "Cameron Peak", "August Complex"]
|
7 |
selected_fire = solara.reactive([fireList[0]])
|
8 |
dNBRvisParams = {'min': 0.0,'max': 0.8, 'palette': ['green', 'yellow','orange','red']}
|
9 |
+
north_complex_bb = ee.Geometry.BBox(-121.616097, 39.426723, -120.668526, 40.030845)
|
10 |
+
dixie_bb = ee.Geometry.BBox(-121.680467, 39.759303, -120.065477, 40.873387)
|
11 |
+
cam_peak_bb = ee.Geometry.BBox(-106.014784, 40.377907, -105.116651, 40.822094)
|
12 |
+
aug_complex_bb = ee.Geometry.BBox(-123.668726, 39.337654, -122.355860, 40.498304)
|
13 |
+
|
14 |
'''
|
15 |
class Map(geemap.Map):
|
16 |
def __init__(self, **kwargs):
|