Questions tagged [google-earth-engine]

Google's cloud computing platform for geospatial data & analysis at earthengine.google.com, which can be programmed using either Python or JavaScript client libraries.

Earth Engine has client libraries in both and .

807 questions
1
vote
1 answer

select one image from a specific month of an imageCollection in google earth engine

I would like to keep in Landsat 8 32-Day NDVI Composite imageCollection one layer in decembre between 2014 and 2017. Is there any way to do a variable filter ? Or a filter on month ?
delaye
  • 1,357
  • 27
  • 45
1
vote
1 answer

Installing Python modules on the (local) Google Earth Engine Docker image

I'm new to docker and Google Earth Engine. I'm using Docker CE and followed the instructions for locally running GEE Datalab. Dockers runs fine and I can access the GGE IDE. I now want to install some additional Python packages. I have no idea how…
mikeck
  • 3,534
  • 1
  • 26
  • 39
1
vote
2 answers

How to speed up exporting in Google Earth Engine?

I need to download a bunch of Landsat images from Google Earth Engine, and I'm doing it in its Python API with task = ee.batch.Export.image(IMAGE, NAME, config=CONFIG) task.start() Though it's working, the speed is extremely slow. The size of my…
1
vote
1 answer

cannot display Google Earth Engine Image in Jupyter Notebook

I'm working on getting google earth engine working with my python setup (Windows 7, Python 2.7.8) using a tutorial I found online (here). I can get EE to initialize, but cannot get it to display an image. import ee from IPython.display import…
1
vote
0 answers

Google Earth Engine: command not found

I'm following the tutorial listed here to install the Python API for Google Earth Engine. I successfully installed all the packages-- although I installed them into /home/alelliot/install, not /usr/local, so that I wouldn't have to use sudo. I am at…
ale19
  • 1,327
  • 7
  • 23
  • 38
1
vote
1 answer

Querying with Large FeatureCollection in Google Earth Engine using python

I am trying process Tanzania shape file downloaded from here. # im -> {Image} ee.Image({...}) # self.geom_coll -> {FeatureCollection} ee.FeatureCollection({...}). containing # 3000 features. # spacereducer() -> ee.Reducer.mean …
Ashish Kumar
  • 51
  • 1
  • 7
1
vote
2 answers

Google EarthEngine Python in VirtualEnv: requests can connect to google.com but ee.Initialize() fails with SSL get certificate error

Trying to get a working installation of the Google EarthExplorer. I am inside a robust corporate firewall, and had to examine the certificate used by Chrome to verify the server/address being verified (using Chrome's dev tools). After some reading…
1
vote
1 answer

Supervised Classification with the Google Earth Engine

For a classification of the Cerrado (a region in Brazil) I have chosen to do a supervised classification using the Google Earth Engine. When running the script an error message pop's up in the console stating: "classified: Layer error: Property…
louis
  • 13
  • 1
  • 5
1
vote
1 answer

javascript - can't access property of an object using its key?

in Google Earth Editor, we've created an object using the reduceRegion() function: var meanValue2015 = ndvi2015.reduceRegion({ reducer: ee.Reducer.mean(), geometry: justEC15.geometry(), crs: 'EPSG:4326', scale: 30, }); My issue is that…
Conor
  • 33
  • 5
1
vote
1 answer

Why I am getting the error "Server returned HTTP code: 404" using Google App Engine and Google Earth Engine

I am trying to run a simple program that I can use as a working example for the Google Earth Engine API, however I get the above error whenever I run it. Here is the code: import ee import ee.mapclient image1 = ee.Image(1); print(image1); As you…
user3431573
  • 69
  • 1
  • 10
0
votes
0 answers

Is There Any Way to Get NIR Spectral Data from Before Sentinel Satellite Imagery?

I'm trying to create a raster layer of annual average MSAVI2 values (https://pro.arcgis.com/en/pro-app/latest/arcpy/spatial-analyst/msavi.htm, a modified form of NDVI) for each year from 2000 to 2021. To do this, I need both the Near InfraRed (NIR)…
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
0
votes
0 answers

Google earth image asset (does not exist or caller does not have access)

I am replicating this project : https://www.aeaweb.org/articles?id=10.1257/aer.20210497 And I was updating their data. However, I cannot even load the images. I wonder what shall I do? wetland_riparian_1000: Layer error: Image.load: Image…
0
votes
0 answers

Getting table (or array) out of dictionary on Google Earth Engine

I would like to get a table (or maybe an array) that I can export from google earth engine with the results of some analysis I am running. I have to issues: I am new to GEE and javascript and I am confused how to create a table without inputting the…
RobertoAS
  • 45
  • 6
0
votes
0 answers

How to plot histogram in GEE based on object properties

I am new to GEE but I managed to create this dictionary object using reduceRegion on Google Earth Engine. I now have days of year (100, 101, 102, etc) as properties and the associated value being the pixel count for that date. Object (1 property) …