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
0
votes
1 answer

How to reduce an image collection by numbers matching conditions in Google Earth Engine

Is there way to reduce an image collection by numbers how many images matching conditions? For example, I want to create a new image to visualize how many days meet some conditions in a period.
leccmo
  • 329
  • 4
  • 16
0
votes
2 answers

Exporting images from image collection in Google Earth Engine - user memory limit exceeded

I'm fairly new to GEE, and I'm trying to process some imagery, then download the results. I need to mask about 30 years of Landsat data to isolate different land cover types, remove clouds, and calculate vegetation indices. Then, I need to export…
0
votes
1 answer

monthlyRainfall.filter(...).first is not a function

https://code.earthengine.google.com/18914d58d2f193bf206e108774902ce5 var months = ee.List.sequence(1, 12) ... var monthlyRainfall = months.map(function(month) { var filtered = monthlyCol.filter(ee.Filter.eq('month', month)) var monthlyMean…
meenu
  • 29
  • 5
0
votes
1 answer

Is it possible to get city boundaries using Earth Engine API?

I noticed that when searching for a city or neighbourhood, the area is delimited very precisely by a red line. I have looked into Earth Engine API, but didn't find anything related to this. Is it possible to retrieve such data? Or are there other…
0
votes
1 answer

Error in RStudio with google drive credentials and google earth engine

I am new to programming in R and am trying to execute a R code where I access the google drive and the google earth engine. However, two situations are happening: first on my personal laptop at home I run the code and it works perfectly and doesn't…
0
votes
2 answers

Extracting data from feature collection in google earth engine

I have a feature collection: ee.FeatureCollection("RESOLVE/ECOREGIONS/2017") and I would like to get the 'BIOME_NUM' for a set of lat long points I have separately. I've looked all over the internet and haven't found anything that gave me results.…
0
votes
1 answer

How to add a customized legend to a split panel map in Google Earth Engine?

Good Day Please could you kindly assist me with the following. I would like to add a customized legend to an interactive split panel map on the Google Earth Engine platform. I am able to create a customized legend and print it to the console but do…
0
votes
1 answer

Is possible to manage computing power on Google Earth Engine?

I'm new to Google Earth Engine and I can't modify or choose the computing power like the Compute Engine service on Google Cloud Platform. It's this possible! Thanks!
Vincenzo
  • 53
  • 6
0
votes
1 answer

How to create a feature collection after importing different shapefiles from assets in Google Earth Engine?

I am importing 2 different shapefiles from assets to plot the time series chart of MODIS but I am unable to make the feature collection out of these shapefiles how to do that? var Haryana_state =…
0
votes
1 answer

Translation of Google Earth Engine javascript functions to python functions

I am struggling to convert a javascript earth engine routine to python which is taken from this material here The javascript is as follows I have included the input collections for context. var l8 = ee.ImageCollection('LANDSAT/LC08/C01/T1_SR') …
crEO
  • 89
  • 5
0
votes
1 answer

Creating two y-axis for time series pixel analysis using ui.Chart.image.series() in Google Earth Engine

I am trying to create a time series image chart for GPP and LAI of a single pixel. The graph looks fine as far as the values are considered. I would like to add a title to both y-axis and have both y-axis have a minimum value of 0. I would post a…
0
votes
1 answer

Why does mapping a function with bind no longer work with ee.List.sequence

Since last week, mapping a function of more than one arguments over result from ee.List.sequence using 'bind' no longer works although it can be mapped over a regular list. Why? e.g. // simple function var add_x = function(n, x) { return n +…
0
votes
0 answers

Using Google Earth Engine node_module in Laravel application

I working on web application with Laravel framework and I need to use Google Earth Engine Javascript API in my application and I have installed with npm install --save @google/earthengine and it has been installed without any issue, located in my…
Gulmuhammad Akbari
  • 1,986
  • 2
  • 13
  • 28
0
votes
0 answers

Question marks simbol instead of CP-1252 characters in Python

I would like to receive "Aragón" instead of "Arag�n". My project consist in a Backend with a method that call the earth engine API in Python (ee) to receive a list of region names of a country (in this case of Spain), using the follow…
0
votes
1 answer

Image stats in Google Earth Engine and rgee package in R?

I'm trying to calculate the mean of all pixels at the county level for an image in Google Earth Engine and am using the rgee package in R Studio. I've tried following the example here:…
Steph
  • 33
  • 1
  • 5