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

Exporting to csv "Error: User Memory limit Exceeded" Google Earth Engine

I am fairly new to Google Earth Engine. Essentially I am trying to export the mean temperature for each polygon in a the WDPA to a csv. I can export smaller subsections of the feature collection but if I try and do it for all the polygons the export…
1
vote
1 answer

SVM classification error in Google Earth Engine

I am trying to classify my image using SVM classifier in Google Earth Engine, but I am getting an error (Computation Timeout) var data= L8SR1.filterDate('2019-02-01', '2019-03-28') .filter(ee.Filter.equals('WRS_PATH', 146)) …
Prathiba
  • 11
  • 2
1
vote
0 answers

R cannot find a conda function: Error in instalation of ee_grab

I follow the directions of https://github.com/JesJehle/earthEngineGrabR and try to install ee_grab. However, I always get the following message: Error: Installation problem Error: Error 1 occurred creating conda environment earthEngineGrabR" It…
1
vote
1 answer

Unable to use the reduceRegion function of google earth engine in python

I try to convert a javascript google earth engine workflow into python and I face some strange errors. More specifically, I use the below script in order to calculate the mean elevation of a predefined area: feature_geometry = { 'type':…
user1919
  • 3,818
  • 17
  • 62
  • 97
1
vote
1 answer

Is there any code for developing 30 years data for NDVI through landsat?

Is this possible to get 30 years of greenest pixel, NDVI annual mean and median data for a particular coordinate without changing the dates manually for every single year? Currently, I am using the following code and manually changing the annual…
1
vote
0 answers

How to use a "numpy-based" function on a GoogleEarthEngine ImageCollection?

I want to use a specific module for time series break detection (called "bfast", see https://bfast.readthedocs.io/en/latest/index.html) which requires as input a 3D-numpy array. The question is: "How I can make the Google Earth Engine…
nmatton
  • 49
  • 7
1
vote
1 answer

Integrating Google Earth Enterprise to Android application

I have Google Earth Enterprise installed in an AWS linux instance. I need to add Google Earth Enterprise maps to an Android mobile application. Is there an SDK like the normal Google Maps API for android. Also, is there any documentation available…
1
vote
1 answer

classification: Layer error: Property 'Landscape' of feature '1_1_1_1_00000000000000000002_0' is missing

I am using google earth engine to classify landcover. The training samples are trained in google earth and processed in ArcGIS and then I uploaded the shapefiles as a table in GEE. I specify the property for each land cover class ( e.g: water:…
TS2918
  • 11
  • 2
1
vote
1 answer

Extract Index vegetation by points over collection in GEE

How I can extract index vegetation points over collections by adapting this beautiful code by @Rodrigo E. Principe: Extract pixel values by points and convert to a table in Google Earth Engine I try extract all values mas GEE is crashing, so only…
Franklin Januário
  • 125
  • 2
  • 2
  • 7
1
vote
0 answers

Google Earth Engine Internal Error ExportImageToDrive

I have been trying to figure out why this image won't export to my drive and I am stuck. I believe this is a syntax problem, but the server error message is pretty cryptic. If I have the simple script that: loads the NLCD 2016 dataset for a user…
dubbbdan
  • 2,650
  • 1
  • 25
  • 43
1
vote
1 answer

How to export long time series of multiple locations from Google Earth Engine

I would like to export as csv of NDVI time series for different points. I currently have a code that can print a chart, then click download the data from chart. Is there a better way to do so as I do not necessarily need to open a chart? What I…
陈见聪
  • 101
  • 1
  • 4
1
vote
0 answers

How can I save an image in GEOTIFF format?

I'm having some trouble for a project work. I have to calculate NDVI for a specific area of the Apulia region, South Italy, using images from Sentinel 2 satellite and Python language. In order to accomplish the task, I thought of dividing the…
1
vote
1 answer

Histogram output in Google Earth Engine

I am just running the sample code for generating histogram as shown in Histograms, and I see the bin count values are floating point. I can not understand it as it should be integer. What is wrong here?
Shahriar49
  • 621
  • 1
  • 5
  • 18
1
vote
0 answers

How can i remove an image with non-data pixels from an MODIS image collection

I would like to calculate my index using MODIS LST products. To do that, I am going to ignore the images with non-data pixels by removing from an image collection. It means I would like to filter the image collection to keep only images which have…
1
vote
1 answer

Export image to assets only have a part?it looks like be cut

I expect the whole image but only got a part: imgs=cloudsort(imgs).map(cloudMaskL457).mosaic(); Export.image.toAsset({ image:imgs.int16().clip(zj), description:'clear', scale:30, maxPixels:1e13 });
jw h
  • 11
  • 1