A QGIS plugin that integrates geemap for working with Google Earth Engine data.
QGIS Geemap brings the power of geemap and Google Earth Engine to QGIS.
Features:
- Add Earth Engine Image and ImageCollection layers to QGIS
- Add Earth Engine FeatureCollection layers as vector data
- Use familiar geemap Map API within QGIS
- Interactive map controls for center, zoom, and bounds
- Full compatibility with existing geemap code
This plugin allows you to use code like:
import ee
import geemap
m = geemap.Map(center=(40, -100), zoom=4)
dem = ee.Image("USGS/SRTMGL1_003")
m.add_layer(dem, {"min": 0, "max": 4000, "palette": ["green", "white"]}, "DEM")
Plugin Tags