Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 947 Bytes

index.rst

File metadata and controls

44 lines (29 loc) · 947 Bytes

Sentinelsat

Sentinelsat makes finding and downloading Copernicus Sentinel satellite images from the Sentinels Scientific Datahub easy.

It offers an easy to use command line interface.

sentinel search --sentinel2 --cloud 30 user password search_polygon.geojson

and a powerful Python API.

from sentinelsat.sentinel import SentinelAPI, get_coordinates

api = SentinelAPI('user', 'password')
products = api.query(get_coordinates('search_polygon.geojson'), \
                   producttype = 'SLC', \
                   orbitdirection='ASCENDING')
api.download_all(products)

Contents ^^^^^

install cli api

Indices and tables

  • genindex
  • modindex
  • search