Questions tagged [geemap]

36 questions
0
votes
0 answers

geemap.requireJS can't access code in EE asset

I'm trying to access a package from the 'users/gena/packages:grid' using geemap.requireJS() function with this code: import ee import geemap ee.Initialize() lib = geemap.requireJS('users/gena/packages:text') lib When the code runs, an auth window…
0
votes
0 answers

Add polygons as Map Layer using geemap folium and fill color based on categorical variable

I am importing geemap folium with import geemap.foliumap as geemap and creating a map using Map = geemap.Map() It works perfectly for the images I add as layers. I would like to overlay geometries that I have in a GeoPandas dataframe, and set…
Samuel T
  • 23
  • 4
0
votes
0 answers

Map=geemap.Map() won´t execute

I'm trying to create a map using Sentinel 2 data with Jupyter notebook. Every time I try to run Map=geemap.Map() it takes a lot of time to execute. My notebook just shows me [*]. I literally left it running ovrnight and it didn't even finish. Does…
0
votes
0 answers

To extract the pixel values using point shapefile as feature Collection of time series data (landsat 8) and export it in csv, in python using geemap()

Error occured: "The image must be an instance of ee.Image.", for the following code. import os import ee import geemap ee.Initialize() Map = geemap.Map() Map india = ee.FeatureCollection("users/GEE_work/INDIA_WITH_KASHMIR") collection =…
0
votes
1 answer

Python - Geemap get the image of the Map at a specific point

I have some understanding problems regarding the geemap and ee in python environment. What I want to do is quite simple : do some measurements with the image of a map (area calculation). So what I have coded now : Get the map with latitude,…
0
votes
0 answers

Python geemap, ee- Extract pixel values for specific country

my question is - is it available to extract pixel values for specific country using geemap and ee libraries? I went through documentation and did not find any infromation about it. I extracted only one big array for world data, however I am only…
mslo36
  • 1
0
votes
0 answers

Geemap download multiple files

Does anyone know how to implement a for loop to download for example each 15 days a land cover MODIS image in 20 years? It will be so helpful for me. For example I need in a folder get 1 image each 15 days from 2000 to 2020 .tif How do I implement a…
Mllearner
  • 11
  • 1
0
votes
1 answer

How to export a big image?

I want to export the imagecollection by 'geemap.ee_export_image_collection_to_drive()', and I got this: Error: Exported image is too big (64240321180032 bytes > 64000000000000). (Error code: 3) All the images in collection are useful so it's better…
0
votes
1 answer

Filter two Google Earth Engine image collections by similar acquisition dates - within one day of each other

This question is based on a previous post: https://gis.stackexchange.com/questions/386827/filter-two-image-collections-by-the-same-aqusition-date-in-google-earth-engine I would like to expand the question to try to filter collections to get images…
Feesh
  • 35
  • 4
0
votes
1 answer

Google Earth Engine with Jupyter Notebook

I want to transfer to Google Earth Engine satellite images without downloading to Jupyter Notebook. Namely, I want for process in Jupyter Notebook of Google Earth Engine images brought to screen. I tried some solution paths but I can't. Can you help…
0
votes
0 answers

Downloading images from google earth to google drive

I am trying to download a few images from Google Earth to Google Drive. I have the following code: import geemap import ee ee.Authenticate() ee.Initialize() img=ee.ImageCollection("LANDSAT/LC08/C02/T1_TOA") collection =…
riskiem
  • 187
  • 2
  • 7
0
votes
0 answers

How to create on click popup which includes plots using ipyleaflet, Folium or Geemap?

I like getting a popup when I click on the map. The popup includes a plot that I get based on the coordinates of the click. In the code below I used Folium to manually do this: import folium import pandas as pd import altair as alt center =…
Ress
  • 667
  • 1
  • 7
  • 24
0
votes
0 answers

Earth Engine Reducer problem is being occurred on Jupyter (VSCode)

I am trying to deploy a Heroku app using GEE on Jupyter for VS Code. After I authenticated it, it is bouncing an AttributeError error. I have even tried downgrading the Google API client according to the geemap creator Dr. Wu, but it is not…
0
votes
1 answer

Add drop down list from geojson, csv files from Ipywidgets module using PYTHON

I am badly stuck with the problem of creating a drop-down list using Ipywidgets in python with files (JSON,GEOJSON,CSV) m = geemap.Map() url = "C:/Users/Hp/Desktop/New_SoilDB_RAW.geojson" m.add_point_layer(url, popup=["DISTRICTS", "Soil"],…
0
votes
0 answers

Streamlit does not showing a map and there's no trouble

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 in the web-app. When I ran it from share streamlit, everything seemed to…