vincentsarago / MAXAR_opendata_to_pgstac

Create STAC Collections/Items for some AWS OpenData
MIT License
11 stars 2 forks source link

STAC Collections/Items for MAXAR / Umbra / Linz OpenData.


Fetch STAC Collection/Items

The goal is to crawl the static collections/items and fetch save in order to ingest them in pgSTAC

# Install dependencies
python -m pip install pip -U
python -m pip install pystac httpx click

# Create STAC collections and items (~30 min)
cd Maxar
python -m generate --collections collections.json --items items.json --with-assets-extension --with-s3-urls

Ingest in pgSTAC

# Install requirement
python -m pip install pypgstac psycopg[pool]

# Launch pgstac database
docker-compose up -d database

# Check the database connection
pypgstac pgready --dsn postgresql://username:password@0.0.0.0:5439/postgis

# Ingest Collections and Items
pypgstac load collections collections.json --dsn postgresql://username:password@0.0.0.0:5439/postgis --method insert_ignore
pypgstac load items items.json --dsn postgresql://username:password@0.0.0.0:5439/postgis --method insert_ignore