Questions tagged [geemap]
geemap is a Python package for interactive mapping with Google Earth Engine (GEE)
128 questions
0 votes
0 answers
21 views
Error when converting feature collection to Pandas data frame
I'm trying to do zonal statistics in Python API when I encounter error message: EEException: Computation timed out while running this cell of code to convert feature collection into data frame: ...
2 votes
1 answer
184 views
Landsat Imagery comes up all white inside ROI
I'm trying to figure out why this shows a white region instead of color. I tried playing around with the min/max values and I cannot seem to find a solution to get true RBG color. import ee import ...
0 votes
0 answers
42 views
Error downloading GEE image collection: "Exception: This image is unbounded"
I'm trying to download MODIS NDVI collection using geemap. The exact same code worked when downloading a different image collection (OpenET collection). I can't figure out why it's not working with ...
1 vote
0 answers
37 views
Error exporting GEE collection using geemap
I'm trying to use geemap's geemap.download_ee_image_collection to download 299 rasters to my local directory. The code is: import os import ee import geemap ee.Authenticate() ee.Initialize(project='...
0 votes
1 answer
42 views
Exporting Geemap Images to Colored KML Polygon
I've been working on a geemap project in Python where one of the requirements is to export an image to a GIS readable file. I've been trying KML, but I'm sure others would work fine. What I've been ...
1 vote
1 answer
62 views
Why is Voila making Ipywidgets Panels fill width?
I've been working on a geemap project in Jupyter Notebooks because that's what was recommended, but now I'm starting to look at publishing. I'm trying out Voila because it has a bunch of ...
1 vote
1 answer
122 views
Error loading Google Earth Engine data
I am trying to load an Image collection in gee map and I keep getting this error for the Landsat 8 Tier 2: EEException: ImageCollection.load: ImageCollection asset 'LANDSAT/LC08/C01/T1_TOA' not found ...
0 votes
0 answers
34 views
Reclassification of nine different type of LULC maps and produces one final LULC by combining all of these in Google Earth Engine
For this I have question that what steps I have to follow? Same thing I did using Python so, for that I resampled all the inputs into one same spatial resolution (0.0025 degree) in QGIS, also I ...
1 vote
1 answer
102 views
How to show pixels when plotting Sentinel-2 images with geemap?
For very small areas, geemap smooths images of Sentinel-2 data - how do I get it to show the pixels cleanly without any smoothing? For instance, the following small area gets smoothed by geemap when ...
0 votes
1 answer
37 views
From where is the satellite basemap within geemap derived?
The geemap module includes the function add_basemap with the option SATELLITE. However, the documentation does not describe from where this satellite data is derived. The citation at the bottom of ...
0 votes
1 answer
63 views
Output Sentinel-2 'SCL' band as raster TIFF from Google Earth Engine
I'm aiming to output the Sentinel-2 SCL band as a raster layer for a small county but unclear on how to output the SCL values for each pixel (getting a grayscale output instead). Preamble import ee, ...
0 votes
1 answer
154 views
Artifacts when extracting Sentinel-2 images
I'm developing an application for water quality analysis using Sentinel-2 imagery in Google Earth Engine. I've encountered a persistent issue with artifacts appearing in the extracted images, which is ...
0 votes
1 answer
111 views
Mismatched in MODIS Data: Comparing GEE Downloads with Source HDF Files
I can export MODIS data using the geemap library in Python or from Google Earth Engine (both option results are the same). However, I am comparing the data downloaded via GEE with the data downloaded ...
0 votes
1 answer
70 views
Tracking GEE API costs with workload tags: Unable to get complete EECU summary [closed]
I am using Python to make multiple GEE API calls and track costs by assigning workload tags using: import ee ee.data.setDefaultWorkloadTag('sample_workload_tag') In the GEE Monitoring Console, I ...
1 vote
2 answers
192 views
Exporting a time series of images in an image collection from GEE using Python
I'm having trouble with exporting images from NASA/HLS/HLSL30/v002 image collection to Drive. This produces a map of the image I want to make: # Applies scaling factors. def apply_scale_factors(image):...