Satellite Imagery

Satellite Image Providers

There are many sources that host publicly available satellite images. We list a few alternatives below:

Out of the above, we implemented downloading functionalities for both Google Earth Engine and Sentinel Hub.

Google Earth Engine

Google Earth Engine (GEE) is probably the most comprehensive platform to use for projects involving satellite image analysis. They provide an interactive coding environment where you can filter and preprocess images, and see the visualisation results immediately overlaid on top of Google Maps.

You might want to spend a couple of days getting a good understanding of how GEE works. An important thing to understand when writing filtering or pre-processing code for GEE is that, what the code returns is a computational graph, rather than the execution results of that operation. The computational graph is executed in one go, only when the results are needed, such as when you request information via .info(), get a download link, or show the image on a map.

This is because all the preprocessing step is handled by Google’s server. The amount of data stored on Google’s server is massive, and if we were to download them onto our local machines, a lot of data needs to be transmitted. By creating a computational graph and passing that graph along with the data request, Google can do all the computational steps for us and just provide us the final result, whether that be a value or a link to an image.

This makes it rather complicated to download image tiles compared to other APIs (e.g. Sentinel Hub). However we have written some scripts that do this, which we hope would be helpful for your purpose as well.

Please refer to the README.md in the repo to find out about the steps required to start using Google Earth Engine API and using our code.

Sentinel Hub API

Sentinel Hub is another API that can be useful for downloading sentinel, landsat and MODIS products. Unlike Google Earth Engine, the free trial only lasts for 30 days, and the quota for the amount of download is tighter. Compared to GEE, Sentinel Hub is easier to get started with since it focusses on a set of APIs that can meet most common use cases, whereas GEE gives you far more customisability in the preprocessing step, but also adds complexity to the process.

Please refer to the README.md in the repo for set up instructions.

Glossary

Organizations

Satellite Programmes

Satellites

Each satellite carries one or more instrumenets to detect electromagnetic radition from the earth. The detected radiation is divided into bands of different frequency (or wavelength) ranges.

Instruments

Instrument Satellite it’s on Bands and resolutions Life
VIIRS NOAA-20 16@750m, 6@375m 11/2017-present
MODIS Terra 2@250m, 5@500m, 29@1000m 12/1999-present
OLI Landsat8 8@30m, 1@15m 02/2013-present
ASTER Terra 4@15m, 6@30m, 5@90m 12/1999-present
CERES Terra, Aqua 13@1000m 12/1999-present
MISR Terra 4@250 12/1999-present
MOPITT Terra 3@22000 12/1999-present
AMSR-E Aqua 4,8,18,16,29,43 05/2002-present
AMSU Aqua 15@45000, 5@15000 05/2002-present
AIRS Aqua 4@2300 05/2002-present
MSI Sentinel2 3@60m, 6@50m, 4@10m 06/2015-present
AVHRR NOAA-19 5@1100m 02/2009-present
SLSTR Sentinel3 5@500m, 5@1000m 02/2016-present
OLCI Sentinel3 21@300m 02/2016-present
SRAL Sentinel3 300m 02/2016-present

Instrument Acronyms


Written by Louis Mahon, Shu Ishida