roboticapples commited on
Commit
f9fdd95
·
1 Parent(s): 6d80a3d

Update pages/08_geemap_draw.py

Browse files
Files changed (1) hide show
  1. pages/08_geemap_draw.py +11 -3
pages/08_geemap_draw.py CHANGED
@@ -51,8 +51,16 @@ def Page():
51
  )
52
  solara.Text(f"Map.draw_features: {Map.draw_features}")
53
  solara.Text(f"Map.user_roi: {Map.user_roi}")
54
- ee.Initialize()
55
- selection = ee.FeatureCollection(Map.user_roi)
56
- solara.Text(f"ee.FeatureCollection(Map.user_roi): {selection}")
 
 
 
 
 
 
 
 
57
 
58
  Page()
 
51
  )
52
  solara.Text(f"Map.draw_features: {Map.draw_features}")
53
  solara.Text(f"Map.user_roi: {Map.user_roi}")
54
+ '''
55
+ Getting auth error:
56
+ ee.ee_exception.EEException: Please authorize access to your Earth Engine account by running
57
+
58
+ earthengine authenticate
59
+
60
+ in your command line, and then retry.
61
+ '''
62
+ # ee.Initialize()
63
+ # selection = ee.FeatureCollection(Map.user_roi)
64
+ # solara.Text(f"ee.FeatureCollection(Map.user_roi): {selection}")
65
 
66
  Page()