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

Embed Google Earth Engine application into web page

Is there a simpler way to embed a Google Earth Engine (javascript) application into a web page without following the tortured route presented by the Google EE demo apps? The Earth Engine Code environment makes it quick and fast to develop the core…
Biofloat
  • 377
  • 3
  • 10
10
votes
1 answer

How to download a sentinel images from google earth engine using python API in tfrecord

While trying to download sentinel image for a specific location, the tif file is generated by default in drive but its not readable by openCV or PIL.Image().Below is the code for the same. If I use the file format as tfrecord. There are no Images…
10
votes
3 answers

HTTPException: invalid and/or missing SSL certificate for url: https://accounts.google.com/o/oauth2/token

When I call for the Google Earth Engine (GEE) Python APIs through Google AppEngine, it throws out a HTTPException which says "HTTPException: invalid and/or missing SSL certificate for url: https://accounts.google.com/o/oauth2/token". The project…
9
votes
2 answers

Mapping a function to rename bands across an image collection in google earth engine

I have a function to visualize imagery of different dates. However, I need to use both landsat 7 and 8, since my the dates I want start earlier than 2013. The issue arises that landsat 7 and 8 order their bands differently, so visualizing the images…
karc11
  • 115
  • 1
  • 2
  • 6
8
votes
1 answer

Exporting all images in a Google Earth Engine image collection (Google Earth Engine API)

I need to download a bunch of Landsat images for my thesis. My problem seems simple but I don't have a clue about JavaScript and the documentation didn't help enough. I have filtered the collection to my region and time period and i want to export…
7
votes
2 answers

Reduce daily data to monthly using Google Earth Engine

I am looking at precipitation data (both GPM and CHIRPS) for different provinces in Indonesia using Google Earth Engine. GPM is sub-daily (every 30 minutes) and CHIRPS is daily. I am only interested in getting the monthly values. Unlike here and…
N Kattler
  • 123
  • 2
  • 6
7
votes
1 answer

Workaround for Google Earth Engine Python API and no support for `ee.mapclient` in Python 3

So I was using Google Earth Engine and working through some of the example code in their repo. I am using Python 3.6. Looks like Google will not support the mapping functionality in Python 3 through their ee.mapclient() anymore. I was wondering if…
krishnab
  • 9,270
  • 12
  • 66
  • 123
7
votes
5 answers

how to download images using google earth engine's python API

I am using Google's Earth Engine API to access LandSat images. The program is as given below, import ee ee.Initialize() Load a landsat image and select three bands. landsat = ee.Image('LANDSAT/LC8_L1T_TOA /LC81230322014135LGN00').select(['B4',…
A S
  • 103
  • 1
  • 2
  • 5
6
votes
2 answers

Export Google Earth Engine RGB Sentinel-2 Imagery to Google Drive using Python API

This post isn't a question but a solution to a problem I have been trying to solve for a while. Hopefully somebody else will find the code useful! I wanted to export Sentinel-2 Satellite imagery…
Misc584
  • 357
  • 3
  • 16
5
votes
0 answers

extract values of multiple lat lon for image collection in earth engine using rgee

I have a dataframe of lat-lon for which I want to extract the daily rainfall data from the "NASA/NEX-GDDP" dataset which is daily temporal resolution and 0.25 degree spatial resolution. My thought process is to download daily raster on my local…
89_Simple
  • 3,393
  • 3
  • 39
  • 94
5
votes
0 answers

Exception handling in earth engine

I have a function that computes 2 numbers which determine whether the function should stop or continue its execution. In short, I would like the function to throw an error whenever x is not equal to y as illustrated in the code below. function er…
Liman
  • 1,270
  • 6
  • 12
5
votes
1 answer

Google Earth Engine Initialization Woes

I am getting an error initializing after what seems like a successful service authentication when it comes to initializing the API. Our group is running on a react framework. Here is the log of the error being thrown: Server listening on port…
5
votes
1 answer

Initialize Google Earth Engine API with a proxy server

After authentication, the earth engine API connects with the servers successfully with the Initialize() function. import ee ee.Initialize() However, as soon as I start using a proxy server, the initialization fails and generates the following…
Utkarsh Sah
  • 301
  • 1
  • 2
  • 12
5
votes
0 answers

How to get the download urls for an image collection from Google Earth Engine

I am still relatively new to Google Earth Engine, but had a question about getting the download URLs for each image in an Image Collection. The question is exactly that, how do I obtain the set of download urls for each image in an imagery…
krishnab
  • 9,270
  • 12
  • 66
  • 123
5
votes
4 answers

How to iterate over and download each image in an image collection from the Google Earth Engine python api

I am new to google earth engine and was trying to understand how to use the Google Earth Engine python api. I can create an image collection, but apparently the getdownloadurl() method operates only on individual images. So I am trying to understand…
krishnab
  • 9,270
  • 12
  • 66
  • 123
1
2 3
53 54