danielle-losos commited on
Commit
56b94bc
·
verified ·
1 Parent(s): 36957a1

Chanigng bbox code

Browse files
Files changed (1) hide show
  1. pages/05_GOES_NBR.py +4 -1
pages/05_GOES_NBR.py CHANGED
@@ -5,8 +5,11 @@ import solara
5
  fireList = ["North Complex", "Dixie", "Cameron Peak", "August Complex"]
6
  four_fires = solara.reactive([fireList[0]])
7
 
8
- NorthComplexBB = ee.Geometry.BBox(-121.616097, 39.426723, -120.668526, 40.030845)
 
9
 
 
 
10
 
11
  class Map(geemap.Map):
12
  def __init__(self, **kwargs):
 
5
  fireList = ["North Complex", "Dixie", "Cameron Peak", "August Complex"]
6
  four_fires = solara.reactive([fireList[0]])
7
 
8
+ # Define the coordinates of the bounding box
9
+ bbox_coords = [[-121.616097, 39.426723], [-120.668526, 39.426723], [-120.668526, 40.030845], [-121.616097, 40.030845]]
10
 
11
+ # Create a bounding box geometry
12
+ NorthComplexBB = ee.Geometry.Polygon(bbox_coords)
13
 
14
  class Map(geemap.Map):
15
  def __init__(self, **kwargs):