A31b 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: A31b
# Authors: Morgan A. Crowley* and Tianjia Liu* (*shared first-authorship)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bobcat Fire in the Earth Engine app FIRMS Active Fires (
'https':#globalfires.earthengine.app/view/firms
).
# Add Earth Engine dataset
image = ee.Image("USGS/SRTMGL1_003")
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Chapter: A3.1 Active fire monitoring
# Checkpoint: A31b
# Authors: Morgan A. Crowley* and Tianjia Liu* (*shared first-authorship)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bobcat Fire in the Earth Engine app FIRMS Active Fires (
'https':#globalfires.earthengine.app/view/firms
).
Display the interactive map¶
In [ ]:
Copied!
Map
Map