/sentinelsat

Utility to search and download Copernicus Sentinel satellite images

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

sentinelsat

PyPI package

Travis-CI

codecov.io code coverage

Documentation

gitter.im chat

Zenodo DOI

Sentinelsat makes searching, downloading and retrieving the metadata of Sentinel satellite images from the Copernicus Open Access Hub easy.

It offers an easy-to-use command line interface

and a powerful Python API.

Documentation is published at http://sentinelsat.readthedocs.io/.

Installation

Install sentinelsat through pip:

Usage

Sentinelsat provides a Python API and a command line interface to search, download and retrieve the metadata for Sentinel products.

Python Library

Valid search query keywords can be found at the Copernicus Open Access Hub documentation.

Command Line Interface

A basic search query consists of a search area geometry as well as the username and password to access the Copernicus Open Access Hub.

Search areas are provided as GeoJSON files, which can be created with QGIS or geojson.io. If you do not specify a start and end date only products published in the last 24 hours will be queried.

Example

Search and download all Sentinel-1 scenes of type SLC, in descending orbit, for the year 2015.

Username, password and DHuS URL can also be set via environment variables for convenience.

Options

-u --user TEXT Username [required] (or environment variable DHUS_USER)
-p --password TEXT Password [required] (or environment variable DHUS_PASSWORD)
--url TEXT Define another API URL. Default URL is 'https://scihub.copernicus.eu/apihub/'.
-s --start TEXT Start date of the query in the format YYYYMMDD.
-e --end TEXT End date of the query in the format YYYYMMDD.
-g --geometry PATH Search area geometry as GeoJSON file.
--uuid TEXT Select a specific product UUID instead of a query. Multiple UUIDs can separated by commas.
--name TEXT Select specific product(s) by filename. Supports wildcards.
--sentinel INT Limit search to a Sentinel satellite (constellation).
--instrument TEXT Limit search to a specific instrument on a Sentinel satellite.
--producttype TEXT Limit search to a Sentinel product type.
-c --cloud INT Maximum cloud cover in percent. (requires --sentinel to be 2 or 3)
-o --order-by TEXT Comma-separated list of keywords to order the result by. Prefix '-' for descending order.
-l --limit INT

Maximum number of results to return. Defaults to no limit.

-d --download Download all results of the query.
--path PATH Set the path where the files will be saved.
-q --query TEXT Extra search keywords you want to use in the query. Separate keywords with comma. Example: 'producttype=GRD,polarisationmode=HH'.
-f --footprints Create geojson file search_footprints.geojson with footprints of the query result.
--version Show version number and exit.
-h --help Show help message and exit.

Tests

To run the tests on sentinelsat:

By default, prerecorded responses to Copernicus Open Access Hub queries are used to not be affected by its downtime. To allow the tests to run actual queries against the Copernicus Open Access Hub set the environment variables

and add --vcr disable to py.test arguments. To update the recordings use either --vcr record_new or --vcr reset.

Documentation

To build the documentation:

The full documentation is also published at http://sentinelsat.readthedocs.io/.

Changelog

See CHANGELOG. You can also use GitHub's compare view to see the changes in the master branch since last release.

Contributors

We invite anyone to participate by contributing code, reporting bugs, fixing bugs, writing documentation and tutorials and discussing the future of this project. Please check CONTRIBUTE.rst.

For a list of maintainers and contributors please see AUTHORS.rst and the contributor graph.

License

GPLv3+