Questions tagged [geemap]

36 questions
4
votes
0 answers

google earth engine API ee.Initialize() throwing an attribute error

I am currently working on a project that requires me to use the geemap google API. However, when I try to initialise ee using ee.Initialize() my script throws an attribute error saying: module 'collections' has no attribute 'Callable'. Prior to…
4
votes
1 answer

Is there an overlay or join by geometry option on Google Earth Engine?

I have a Landsat Image and an image collection (3 images: static in time but each partially overlapping the Landsat image) with one band and want to add this one band to the Landsat image. In a traditional GIS/python df I would do an Inner Join…
svollowork
  • 78
  • 7
3
votes
3 answers

Why is geemap.Map() showing a AttributeError: module 'collections' has no attribute 'Callable'?

I have this code, but its doesn't show up the maps (output). I don't know what is the error. import geemap Map=geemap.Map() Map After running the above code, I get the error "AttributeError: module 'collections' has no attribute 'Callable'" I have…
Ricky
  • 69
  • 1
  • 7
2
votes
1 answer

Export imageCollection as a numpy array (Earth Engine Python API)

I'm attempting to download earth engine image collection within a specific timeframe as a 3dim numpy.ndarray with dimensions --(xdim, ydim, number of images in collection) so that I can run them on a CNN. I've been able to export one image with help…
2
votes
0 answers

Error On The Streamlit-"ee.ee_exception.EEException: Image.select: Pattern 'B4' did not match any bands."

I'm working on estimation chlorophyll-a using a Landsat 8 image and then I’m trying to build an web-app which is using streamlit and geemap library. But my map doesn’t showing when I ran it from my local computer. I've tried to changing it but it's…
1
vote
0 answers

Incomplete image coverage of Area of Interest (AOI) in Earth Engine using Jupyter Notebook

I am working on analyzing satellite imagery in Earth Engine for an Area of Interest (AOI) specified by a shapefile polygon using python 3 on a jupyter notebook. However, the satellite images retrieved using the COPERNICUS/S2 image collection only…
1
vote
0 answers

How to download a land cover image using geemap?

I am trying to download an image from gee using the geemap python library, from the Dynamic Earth land cover dataset for a particular lat/long. However, I'm struggling using the geemap.download_ee_image() function as the land cover data is not…
1
vote
0 answers

Mask image collection by year in Google Earth Engine

I am working with MODIS NDVI daily imagery in Google Earth Engine using Python. I want to identify the Julian Date at which NDVI reaches 50% between the minimum and maximum yearly values, and then return a collection of images which contain the 50%…
1
vote
0 answers

Can not visualize maps in Geemap - Google Colab

Today 07/07/2022, I am working in Geemap trough Google Colab. I have been working with some codes that have been performed OK, however, today the interactive map is not displayed. Also I have tried with other public codes, and the issue remains. Has…
Giancarlo
  • 11
  • 1
1
vote
0 answers

Extract unique pixel values from raster in geemap with overlapping points

I'm extracting band values from a Landsat raster image using the extract_values_to_points() function in geemap. I have a feature class with latitudes and longitudes for each sampling point, however, in several cases points are located within the…
Feesh
  • 35
  • 4
1
vote
2 answers

The 'pyasn1-modules>=0.2.1' distribution was not found and is required by google-auth

I wanted to try Python's Geemap module, I installed it via conda install geemap -c conda-forge. But when importing it in my pyhton code I have this error message :The 'pyasn1-modules>=0.2.1' distribution was not found and is required by google-auth.…
Alan Suc
  • 35
  • 1
  • 6
1
vote
0 answers

how can I show geemap.link_map in pyqt5

Based on the following code, I want to show a geemap in pyqt5 class NewMap(QWidget): def __init__(self): super().__init__() self.setMinimumSize(QSize(600, 650)) self.setWindowTitle("open image") …
Cjgv
  • 11
  • 1
1
vote
1 answer

what should I do with geemap library map illustration?

I am using geemap on my project but the map which came up it is not like the one presented in the documentation and does not provide the icon that helps to select layers. what should I do? Map = geemap.Map() Map what it shows: What it supposed to…
1
vote
0 answers

How to add an external shapefile using cartopy in geemap?

I am trying to add a shapefile over a satellite image using cartogee in geemap. I got successful in plotting the satellite imagery but got error while adding the shapefile. The script I used is   # Set range of map, stipulate zoom…
Gokul Anand
  • 177
  • 12
0
votes
1 answer

Loop over image collection ee.ImageCollection to plot in geemap.Map

I am accessing the GEE data catalog through earthengine-api in Colab. Then I would like to explore all the images from my filtered image collection before downloading. # import libraries import ee,datetime import…
Marlon
  • 13
  • 4
1
2 3