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

Google earth Image: Create an upper and lower quartile composite image from an image collection

I am trying to create a composite image from an image collection (In this example Sentinel 2) where the pixel value for the resulting composite is the lower or upper quartiles of the pixel value distribution. Its easy to get the mean, median,…
0
votes
1 answer

Get results in an Earth Engine python script

I'm trying to get NDVI mean in every polygon in a feature collection with earth engine python API. I think that I succeeded getting the result (a feature collection in a feature collection), but then I don't know how to get data from it. The data I…
rhal
  • 3
  • 1
  • 5
0
votes
0 answers

Build Read The Docs documentation from docs folder created with sphinx

I have made a python package (https://github.com/gee-community/gee_tools) that depends entirely on Google Earth Engine Python API. Although the earthengine-api package is locally installed, to get full and real access to objects you need to…
0
votes
1 answer

Extracting raster values to point features with reduce regions. Error: "User memory limit exceeded"

I am very new to Earth Engine and Javascript so I wouldn't be surprised if the solution to my problem is extremely simple. Anyways, I've been trying to fix this in days and I'm not doing anyhow better. I'm trying to get the cumulative cost distance…
0
votes
0 answers

How to send data as argument from web application to c++ and back?

Let me give you some context for this question. I joined to a halfway project in which we need to produce some coordinates data based on certain parameters defined by GEOTIFF maps. I need to get an array of coordinates from the map, send them to…
0
votes
2 answers

Importing Earth Engine javascript library into another javascript file

sorry I am not much of a Javascript programmer so this is a rather noob question. But I was having trouble trying to import the Google Earth Engine api file into another javascript file. All of the examples in the Earth Engine repo use a
krishnab
  • 9,270
  • 12
  • 66
  • 123
0
votes
0 answers

Running Google Earth Engine Datalab through docker

I'm trying to install Google Earth Engine Datalab (to use the Python API) in my windows (Home Edition) PC. As I can't install docker as is, I’ve installed Docker Toolbox. Then, I’ve installed the latest image as the instructions in…
0
votes
2 answers

Dealing with MODIS equator gaps in GEE

I am trying to run a time series analysis for a Lake in Africa. Since my area of interest is at the equator it is affected by gaps every few days where the sensor has not covered the full area (see Figure below). An example is given in the code…
0
votes
2 answers

Combining MODIS products - GEE

I am trying to combine MODIS products; MOD09GA (bands 1-7) and MODOCGA (bands 8-16) in order to look at the spectral signature (bands 1-16) at different points in my study area (a large lake). The first issue I am having is that MODOCGA will not…
0
votes
1 answer

Re-entering Cloud Datalab from docker?

I am using docker to get on a Cloud Datalab so I can use google earth engine. I initially set things up by using these directions for windows, https://developers.google.com/earth-engine/python_install-datalab-local. Everything worked fine and I got…
Stefano Potter
  • 3,467
  • 10
  • 45
  • 82
0
votes
2 answers

Lab 2 Google Earth Engine - Image.select error

I am new to coding and have just started using the Google Earth Engine code editor. I am on Lab 2 provided by Google Earth Engine: https://docs.google.com/document/d/1NojoqhGbsBnIWE2OSwYCgMmRxeZDn7F1g3kkNuMGJ1E/edit When in complete the practical…
0
votes
0 answers

Stop google earth time-lapse from automatically scrolling down to itself

Is there anyway to stop google Earth's time-lapse from automatically scrolling down to itself? I have a google map like viewer with a vertically scrollable sidebar. When you click a location on the map it passes the lat/lon values into the web…
Sam Hanson
  • 53
  • 1
  • 1
  • 7
0
votes
1 answer

Unable to install Google-Earth-Engine-Api in Linux subsystem for Windows

Ok, I've installed Linux subsystem in my Windows 10 and now following this tutorial to install google earth engine inside my Linux subsystem. When I try to run following command to install GEE API, I get following error (I am getting the same error…
0
votes
0 answers

Google Earth Engine band values to table from points

I am working on a project to measure reflectance values of 225 points near 8 different glaciers. I have run across code that does this with 2 points and I have edited it to give me summertime values across the Landsat 7 time series for 225 points.…
Carl
  • 1
  • 2
0
votes
1 answer

Google Earth Engine: Region of Landsat Image

I have some manipulation in Google Earth Engine, for example: // Load a cloudy Landsat scene and display it. var cloudy_scene = ee.Image('LANDSAT/LC8_L1T_TOA/LC80440342014269LGN00'); Map.centerObject(cloudy_scene); Map.addLayer(cloudy_scene, {bands:…