Searching the Catalog
This guide shows methods for using pystac with Hydrosat's SpatioTemporal Asset Catalog (STAC) API to search for data that meets your criteria.
1. Import dependencies.
import json
import pystac
from pystac_client import Client
import base642. Connect to the STAC API with your account credentials.
with open('creds.json') as f:
creds = json.loads(f.read())3. Define your search terms.

3.1 Searching by area of interest
3.1.1 Searching with a point geometry

3.1.2 Searching with a polygon geometry

3.1.3 Searching with a bounding box

3.2. Searching by date range

3.3 Searching by metadata tag

4. Summary of approaches

Last updated
Was this helpful?