Skip to main content

Implementation of USGS's machine-to-machine API (v1.5.0)

Project description

callusgs

callusgs aims to be a complete and (mostly) typed implementation of USGS's machine-to-machine API (v1.5.0). In addition, callusgs provides a suite of command line tools that can be used to query and download scenes, use the geocoding service provided by the USGSS and convert WRS 1/2 coordinates to geographic coordinates.

Installation

Install the package together with the respective command line applications from pip.

pip install callusgs

Alternatively, if you're only interested in the CLI functionality of this tool the best choice is probably to use pipx for installation.

pipx install callusgs

Usage

For more detailed usage instructions and/or examples, please refer to the documentation or see the section below.

Prerequisites

To fully use the package's/the API's functionality you need (1) an account at USGS and (2) access to M2M MACHINE role. While the first one is mandatory, the functionality without access to the M2M MACHINE role is restricted. The account credentials need to be passed to the command line tools via CLI arguments or by setting the environment variables USGS_USERNAME and USGS_AUTH.

Feature/Functionality Usable Note
Searching for scenes Yes
Creating scene lists out of search results Yes
Generate orders from scene searches or scene lists No Downloading orders from list, when order was placed via webinterface is possible
Geocoding Yes
WRS1/WRS2 to coordinate transformation Yes

Command Line Tool Examples

Download

The snippet below queries the EarthExplorer catalogue for Landsat 8/9 Collection 2 Level 2 scenes between June 1st, 2020 and July 25th, 2024 for a small part of the southwest of Berlin, Germany. Additionally, only scenes for August and September are returned and they must have a cloudcover of no more than 15%. Results are stored in a directory called download. The user set the logging level to INFO with the -v flag.

callusgs -v download --product landsat_etm_c2_l2 \
    --date 2020-06-01 2024-07-25 --month aug sep \
    --cloudcover 0 15 --aoi-coordinates 52.5 13.4 52.5 13.2 52.7 13.2 52.5 13.4 -- download

The snippet below queries the EarthExplorer catalogue for Landsat 7 Collection 2 Level 1 scenes between January 1st, 2005 and January 1st, 2020 for Lima, Peru, and its surrounding region. For the given polygon, the minimum bound recatangle is build and used for the query. No further restrictions regarding the obervation months or cloudcouver are posed. Results would be stored in a directory called download, but as a dry run is requested, only the number of available scenes and their download size is reported. The user requested extended debug output with the -vv flag.

callusgs -vv --dry-run download --product landsat_etm_c2_l1 \
    --date 2005-01-01 2020-01-01 --aoi-type Mbr \
    --aoi-coordinates -11.99 -77.13 -11.97 -77.00 -12.01 -76.88 -12.07 -76.88 -12.13 -76.89 -12.07 -77.16 -11.99 -77.13 -- \
    download

Geocode

The USGS supplies a simplistic geocoding/POI-search endpoint which can be queries using the geocode sub-program. The snippet below queries all U.S. features whos placename attribute matches "New York".

Right now, the placename endpoint, which is called under the hood, does not return any results for features of type "world"!

callusgs geocode --feature-type US "New York"

Grid2ll

Get either centroids or polygons of the WRS2 or WRS2 coordinate system based on geographic coordinates in WGS84 (EPSG:4326) inputs. The snipped below queries the centroid coordinates for three points in the WRS2 system.

callusgs grid2ll --response-shape point 52,11 32,5 89,69

Features

callusgs is both a python package and a suite of command line tools.

Currently supported products for download are:

Product string Prodcut Name
landsat_em_c2_l1 Landsat 4/5 Collection 2 Level 1
landsat_em_c2_l2 Landsat 4/5 Collection 2 Level 1
landsat_etm_c2_l1 Landsat 7 Collection 2 Level 1
landsat_etm_c2_l2 Landsat 7 Collection 2 Level 2
landsat_ot_c2_l1 Landsat 8/9 Collection 2 Level 1
landsat_ot_c2_l2 Landsat 8/9 Collection 2 Level 2
landsat_ba_tile_c2 Landsat Burned Area Product
landsat_dswe_tile_c2 Landsat Dynamic Surface Water Extent
landsat_fsca_tile_c2 Landsat Fractional Snow Covered Area

Known Limitations

Documentation

See the docs folder for raw documentation or visit callusgs.readthedocs.io.

License

  • callusgs is licensed under the GPL-v2
  • the file docs/requirements.txt is licensed under the MIT license.

Citation

If you use this software, please use the bibtex entry below or refer to the citation file.

@software{Katerndahl2024,
author = {Katerndahl, Florian},
title = {callusgs},
url = {https://github.com/Florian-Katerndahl/callusgs}
}

Acknowledgments

  • Most of the docstrings were provided by the USGS in their API documentation.
  • The download application took initial inspiration from the example script provided by the USGS.
  • docs/requirements.txt is taken from here

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

callusgs-0.1.2a2.tar.gz (47.7 kB view hashes)

Uploaded Source

Built Distribution

callusgs-0.1.2a2-py3-none-any.whl (48.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page