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

Add map created from other to my website google earth engine?

I want to add this map to my website. Is it possible to do it?
0
votes
1 answer

image.filter is not a function in google earth engine

As a newbie to the google earth engine, I have been trying something (https://code.earthengine.google.com/6f45059a59b75757c88ce2d3869fc9fd) following a NASA tutorial (https://www.youtube.com/watch?v=JFvxudueT_k&ab_channel=NASAVideo). My last line…
0
votes
2 answers

Export a geoTIFF file from jupyter notebook to google drive but nothing appears in my google drive

After having searched for a long time for a solution to my problem without succeeding, I'd like to ask you my question here. I have a python code that creates a geoTIFF file from google earth engine data. I'm running it on jupyter notebook and I…
0
votes
1 answer

Why are my satellite images always appearing with null values on GEE?

Mine is a simple operation of viewing satellite images in Google Earth Engine. I would like to view Sentinel 2 TOA images on GEE but clipped to a bounding box on the map. So I create the bounding box on the GEE map and saved it as a feature…
0
votes
1 answer

concatenation of Landsat images Side by side

My interest area is consisting of two path and single row(WRS2 path-138, row-45), I want to concatenate two scenes from two path and clip the desired area according to given geometric polygon and saved the clipped image on google drive.
0
votes
3 answers

Error downloading a file from Google Drive

I exported some images from Google Earth Engine to Google Drive. I need to download those images to a local drive using a Python script. Then, I tried to use oauth2client, apiclient as I saw here: I got a list of files in Drive and the…
Mauro Assis
  • 375
  • 1
  • 5
  • 22
0
votes
1 answer

Why is my combined Mask masking different areas to the individual Masks over an ImageCollection in GEE?

I'm trying to perform a time-series analysis of Sentinel-2 satellite imagery over Water, and to do that I've been muddling through using functions to perform analysis on images over an Image Collection. I previously got further with my analyses with…
0
votes
1 answer

Error: Exported bands must have compatible data types; found inconsistent types: Float32 and Byte

I'm new to use Google Earth Engine and trying to export satellite image dataset to my google drive folder. But I'm getting the error below. Error: Exported bands must have compatible data types; found inconsistent types: Float32 and Byte. This is my…
Allen
  • 29
  • 6
0
votes
2 answers

Convert earth engine feature collection to a dataframe in python

I uploaded a shapefile in my earth engine account as a feature collection and I now I need to use it in a jupyter lab notebook. I use the following code to import the collection: df = ee.FeatureCollection('users/my_user/my_shape') But now I don't…
jimmy
  • 340
  • 2
  • 13
0
votes
1 answer

Am I using too many training data in GEE?

I am running a classification script in GEE and I have about 2100 training data since my AOI is a region in Italy and have many classes. I receive the following error while I try save my script: Script error File too large (larger than 512KB). I…
Paris
  • 105
  • 3
0
votes
1 answer

Why does adding tileScale to GEE script does not run the supervised classification?

I am performing a supervised classification with GEE on a region in Italy and I face the error: Output of image computation is too large (15 bands for 931221 pixels = 99.5 MiB > 80.0 MiB). If this is a reduction, try specifying a larger 'tileScale'…
Paris
  • 105
  • 3
0
votes
1 answer

is there anyway to convert GeometryCollection to a list of geometries?

I am a newbie to earth engine. I got a question. how can I have geometrycollection as list of geometries? I drew some polygons and they are imported as geometrycollection. I would be grateful if anyone can help.
daren hardi
  • 17
  • 1
  • 4
0
votes
1 answer

Obtaining Metadata Information using ee_print function from RGEE

I am using the package RGEE (R wrapper for the Google Earth Engine Python API). The function ee_print() seems to work perfectly for an ImageCollection of just one variable, but seems to fail for ImageCollection with different variables where one…
codeload
  • 1
  • 2
0
votes
1 answer

How do I map the count of images in a ImageCollection in GEE?

I want to replicate the following image, which pixel-wise tells (look at the legend) how many images are available in a ee.ImageCollection. https://i.stack.imgur.com/BgoMR.png [1] I thank you for any help in advance! References: [1] Masoud…
S22
  • 1
0
votes
1 answer

Interpolation code in Google Earth Engine

I'm looking for interpolation code for time series in Google Earth Engine, to convert NDVI Sentinel 2 data to daily data. Thank you for any help.