A client library for Terrakio's WCS API service
Project description
Terrakio API Client
A Python client for Terrakio API. This package provides a user-friendly interface for accessing Terrakio's data services.
Features
- Authentication
- WCS queries and data retrieval
- Mass stats related functionalities
Installation
pip install terrakio-api
Usage Example
from terrakio_api import Client
from shapely.geometry import Point
# Initialize the client
client = Client()
# Login to your account
token = client.login(email = "XXX", password = "XXX")
print(f"✓ Login successful, personal token: {token[:10]}...")
# The login account will automatically be used for the requests
# View API key
api_key = client.view_api_key()
print(f"✓ Current API key: {api_key[:10]}...")
# Create a geographic feature
point = Point(149.057, -35.1548)
geojson = {
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [point.x, point.y]
},
"properties": {
"name": "Location in Canberra region",
"description": "Coordinates: 149.057, -35.1548"
}
}
# Make a WCS request
dataset = client.wcs(
expr="prec=MSWX.precipitation@(year=2024, month=1)\nprec",
feature=geojson,
output="netcdf"
)
For more documentation, see the main repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
terrakio_api-0.3.4.tar.gz
(2.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file terrakio_api-0.3.4.tar.gz.
File metadata
- Download URL: terrakio_api-0.3.4.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e391df02a06dbc1a41ac37328eb90b16c0dfd20ab0fcbe361d47ceefd71bd440
|
|
| MD5 |
b569ed65263b4232ec06c9cda4605a73
|
|
| BLAKE2b-256 |
2ab01d65ec643723bba420fb07cc0dba916a10da8265337b39375fd2cce0dc4f
|
File details
Details for the file terrakio_api-0.3.4-py3-none-any.whl.
File metadata
- Download URL: terrakio_api-0.3.4-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40130abf8d1dee1a410ff4c63b72a3a46a10eeb9d77667686028ec3bb110bcff
|
|
| MD5 |
9edc80d508da29b0085c8277b6bcc3cd
|
|
| BLAKE2b-256 |
be4c0cfbb80236df7bccab1cbde2821dfc374f31e736db50897a998b1c2203ed
|