Examples
This section provides practical examples of using Open Geodata API for real-world geospatial data tasks.
Example Notebooks
Interactive Jupyter notebooks with complete examples:
Quick Reference
Data Discovery
# List available collections
collections = pc.list_collections()
# Get collection details
info = pc.get_collection_info('sentinel-2-l2a')
Geographic Search
# Search by bounding box
results = pc.search(
collections=['sentinel-2-l2a'],
bbox=[-122.5, 47.5, -122.0, 48.0]
)
Data Export
# Export URLs to JSON
items.export_urls_json('urls.json')
# Convert to DataFrame
df = items.to_dataframe()