A31d Checkpoint
Import libraries¶
In [ ]:
Copied!
import ee
import geemap
import ee
import geemap
Create an interactive map¶
In [ ]:
Copied!
Map = geemap.Map(center=[40, -100], zoom=4)
Map = geemap.Map(center=[40, -100], zoom=4)
Add Earth Engine Python script¶
In [ ]:
Copied!
# Add Earth Engine dataset
image = ee.Image("USGS/SRTMGL1_003")
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Chapter: A3.1 Active fire monitoring
# Checkpoint: A31d
# Authors: Morgan A. Crowley* and Tianjia Liu* (*shared first-authorship)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
the Earth Engine app U.S. Fire Dashboard (
'https':#globalfires.earthengine.app/view/us-fire-dashboard
).
# Add Earth Engine dataset
image = ee.Image("USGS/SRTMGL1_003")
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Chapter: A3.1 Active fire monitoring
# Checkpoint: A31d
# Authors: Morgan A. Crowley* and Tianjia Liu* (*shared first-authorship)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
the Earth Engine app U.S. Fire Dashboard (
'https':#globalfires.earthengine.app/view/us-fire-dashboard
).
Display the interactive map¶
In [ ]:
Copied!
Map
Map