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

For temperature time series (MYD11A2) in a year, how to determine the date when the temperature is greater than a threshold for the first time?

The goal is to determine the start of growing season for rice in cold region annually (taking 2019 as an example) using the MODIS Terra temperature dataset, which is defined as the night temperature greater than 278.15 kelvin degree (5 celsius…
0
votes
2 answers

Earth Engine with Python API get Date

I want to get date value from time series of earth engine collection. This is my code: import ee ee.Authenticate() ee.Initialize() collection = ee.ImageCollection('NASA/FLDAS/NOAH01/C/GL/M/V001') taken = collection.filterDate('2019-01-01',…
ricoen
  • 9
  • 5
0
votes
1 answer

Clipping according to shapefile in google earth engine

I have a shapefile of intertidalArea now I want to clip my imagecollection according to that shapefile. Map.addLayer(intertidalArea, {}, "Intertidal area") var image5 = L5.filterDate('1987-01-01','2003-12-31').filterMetadata('CLOUD_COVER',…
0
votes
1 answer

Google Earth Engine Python API: map function

Does the use of the Earth Engine map function, e.g. map a list of bands over an Image Collection, in the Earth Engine Python API have access to the Python map function? Is there a possibility of Python mixing up between the two types?
0
votes
3 answers

Upload asset in Google Earth Engine with Python?

I want upload an asset to Earth Engine with Python and I don't want use Google Cloud Storage. Is there a way to upload a particular file (from my computer) directly to the Google Earth Engine using the command line (or using a Python script)?
Alirez4
  • 11
  • 2
0
votes
0 answers

google earth engine: error: Cannot use 'in' operator to search for 'type' in table3

I'm following the code at this link (also found below). My final task is convert raster image into vector data. But When Executing the code following error is occurred: Cannot use 'in' operator to search for 'type' in table3 I'm not quite sure…
monu
  • 11
  • 2
0
votes
0 answers

Google Earth Engine: How to use a shape file as area of interest during calculation of NDVI with Cloud masking and land masking

I am trying to calculate the annual NDVI with Cloud masking and land masking for Australia. I am getting this error Image (Error) reduce.mean: Error in map(ID=0): Image.bitwiseAnd: Bitwise operands must be integer only. my code…
0
votes
1 answer

Uploading shapefle to Google Earth Engine

I need help uploading the following shapefile into Google Earth Engine: http://myflorida-floridadisaster.opendata.arcgis.com/datasets/a78a27e02f9d4a71a3c3357aefc35baf_4 When I go to my asset and upload it as a table I get an error saying that the…
Selena Chavez
  • 139
  • 2
  • 10
0
votes
0 answers

Video Export based on location instead of based on time

I am trying to export a video but I got a sketchy video that sort all the images from the collection based on time and show the separately instead of put them together. where I'm doing it wrong folks? this is the output :…
0
votes
1 answer

Google Earth Engine video export error (a.element.map is not a function)

I'm trying to export a time-lapse here but got a weird error: Error Creating or Submitting Task a.element.map is not a function I want to keep the visParams on my exported video by visualize() which I'm not sure is the right way to do so or not. do…
0
votes
1 answer

Google Earth Engine (gee) reduceResolution() tile size error

I'm trying to rescale an image (30 to 100m spatial resolution) using reduceResoluton().reproject() functions in Google Earth Engine (GEE). What I wanted is calculating the mean values of the 30 m image into the new 100 m resolution image. I have…
0
votes
1 answer

Google Earth Engine, hide widgets in Map.ui

Can I hide all widgets in https://code.earthengine.google.com/ when loading a map? (all standard widgets including +-(zoom), map/satellite, drawing tools...) I would like to create an app and embed it into a website without the widgets, just…
mvsc1
  • 118
  • 5
0
votes
1 answer

Return empty bandNames after applying reducer in GEE using Python

I would like to get a list of bandNames from an image after applying a function on a imageCollection for computing monthly mean. But I found that the bandNames is empty in the returned imagecollection. Here is the code: PR_geometry =…
0
votes
1 answer

Every possible combination of lists in google earth engine

I want to get possible combinations of two sets of lists in google earth engine, but my code did not works. var Per1= ee.Array([[0.1,0.5,0.8],[0.4,0.5,0.2]]) var pre = PercFin1.toList() var CC=ee.List([1,2,3]); var ZZ = pre.map(function(hh){ var…
HamiEbra
  • 310
  • 2
  • 7
0
votes
2 answers

create ee.Geometry.Rectangle centered at coordinate point and specify size in pixels

I would like to create an ee.Geometry.Rectangle centered at a specific coordinate point and with specific width and height values in pixels. ee.Geometry.Rectangle accepts the coordinate points for the minimum and maximum corners of the rectangle;…
user6360
  • 21
  • 5