19 search places and datasets
Uncomment the following line to install geemap if needed.
In [1]:
Copied!
# !pip install geemap
# !pip install geemap
In [2]:
Copied!
import ee
import geemap
import ee
import geemap
In [3]:
Copied!
geemap.show_youtube('lwtgzrHrXj8')
geemap.show_youtube('lwtgzrHrXj8')
In [4]:
Copied!
# geemap.update_package()
# geemap.update_package()
Create an interactive map¶
In [5]:
Copied!
Map = geemap.Map()
Map
Map = geemap.Map()
Map
Out[5]:
Make this Notebook Trusted to load map: File -> Trust Notebook
Convert marker to ee.Geometry¶
In [6]:
Copied!
Map.search_locations
Map.search_locations
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Input In [6], in <cell line: 1>() ----> 1 Map.search_locations AttributeError: 'Map' object has no attribute 'search_locations'
In [7]:
Copied!
Map.search_loc_geom
Map.search_loc_geom
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Input In [7], in <cell line: 1>() ----> 1 Map.search_loc_geom AttributeError: 'Map' object has no attribute 'search_loc_geom'
In [8]:
Copied!
location = Map.search_loc_geom
# print(location.getInfo())
location = Map.search_loc_geom
# print(location.getInfo())
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Input In [8], in <cell line: 1>() ----> 1 location = Map.search_loc_geom AttributeError: 'Map' object has no attribute 'search_loc_geom'
Last update:
2022-03-14