Python SDK for UP42, the geospatial marketplace and developer platform.
Documentation Β β’ Β UP42.com Β β’ Β Support
Highlights
- Python package for easy access to UP42's geospatial collections and analytics workflows
- Use UP42 functionality together with your preferred Python libraries!
- Interactive maps and visualizations of your UP42 assets
Installation & Documentation
See the documentation for getting started guides, examples and the code reference.
Install via pip or conda. The package requires Python > 3.6.
pip install up42-py
conda install -c conda-forge up42-py
30-second Example
Search & order satellite images from the UP42 catalog.
import up42
up42.authenticate(project_id="your project ID", project_api_key="your-project-API-key")
catalog = up42.initialize_catalog()
# See the available data products and collections
catalog.get_data_products(basic=True)
# Search in the catalog with your search parameters
aoi = up42.read_vector_file("data/aoi_washington.geojson")
search_parameters = catalog.construct_search_parameters(geometry=aoi,
start_date="2019-01-01",
end_date="2021-12-31",
collections=["phr"],
max_cloudcover=20,
limit=10)
search_results = catalog.search(search_parameters=search_parameters)
# Estimate the order price and place the order
order_parameters = catalog.construct_order_parameters(data_product_id='647780db-5a06-4b61-b525-577a8b68bb54',
image_id='6434e7af-2d41-4ded-a789-fb1b2447ac92',
aoi=aoi)
catalog.estimate_order(order_parameters)
order = catalog.place_order(order_parameters)
# Download the finished order
assets = order.get_assets()
assets[0].download()
Support
For any kind of issues or suggestions please see the documentation, open a GitHub issue or contact support.