Skip to main content

SAS Atmosphere Interface & Retrieval

Project description

SASAIR (SAS Atmosphere Interface & Retrieval)

Description

SASAIR is a Python package with Python client implementations for some common Air pollution and atmosphere related public API's.

Currently, it supports the following API's:

Installation with pip

To install the package, you can use the following command:

pip install sasair 

Building from Source

You need Conda to build the package from source. Follow these steps:

  1. Clone the repository:
git clone https://git.vito.be/projects/MARVIN/repos/sasair
cd sasair
  1. Create the Python environment:
conda env create --prefix ./.venv --file conda_env.yml
conda activate .\.venv
  1. Install the package:
poetry install -E "full"

Modules Overview

cams_client

Provides two primary client classes:

  • CAMSMosClient: Downloads observation-site optimized forecasts (mos_optimised) for a given country and pollutant.
  • CAMSEuropeClient: Downloads regional forecast data in NetCDF format for a specific CAMS model and pollutant.

Common usage CAMSMosClient:

from pathlib import Path
from datetime import datetime
from cams_client import CAMSMosClient

client = CAMSMosClient(date_start=today, pollutant=Pollutant.NO2, country='belgium')
zip_file = client.download(destination_folder="./mos_data", api_key="your_api_key")
print(f"Downloaded MOS data to {zip_path}")

Common usage CAMSEuropeClient:

from pathlib import Path
from datetime import datetime
from cams_client import CAMSEuropeClient

client = CAMSEuropeClient(date_start=today, cams_model_name='ensemble', pollutant=Pollutant.NO2, area=None)  # Default area [52, 2.5, 49, 6.5] will be used.
nc_file = client.download(destination_folder="./cams_data", api_key="your_api_key")
print(f"Downloaded MOS data to {zip_path}")

Note:

you can enter the URL end API KEY in the ~/.cdsapirc file (as described in the CDS API documentation) to avoid passing them as parameters.

ircel_wfs_client

Provides a IrcelWfsClient to retrieve station metadata from IRCEL’s realtime WFS endpoint.

Usage:

from ircel_wfs_client import IrcelWfsClient

client = IrcelWfsClient()
stations = client.get_sos_stations()
for station in stations[:5]:
    print(station)

sos_client

Provides a SOSClient to query air quality observations using the Sensor Observation Service.

Usage:

from sos_client import SOSClient
from datetime import datetime, timedelta, timezone

client = SOSClient()
end_time = datetime.now(timezone.utc)
start_time = end_time - timedelta(days=3)

observations = client.get_observations(station_name="40DU07", pollutant="PM10", start_time=start_time, end_time=end_time)
for obs in observations:
    print(obs)

api_client

Implements a generic RESTclient base class that wraps low-level GET/POST/PUT/DELETE methods with retry logic. It is extended by the IRCEL and SOS clients.

date_utils

Utility functions for ISO 8601 datetime conversions:

  • to_utc_iso(datetime) -> str: Convert datetime to UTC ISO string.
  • iso_utc_to_datetime(str) -> datetime: Parse ISO string to UTC datetime.
  • is_valid_iso(str) -> bool: Check if string is valid ISO format.

Full API

The full API documentation is available at http://docs.marvin.vito.local/map/sasair/.

Contributing

If you want to contribute to spio, please follow the standard contributing guidelines and push your changes to a new branch in https://git.vito.be/projects/MARVIN/repos/sasair

CI/CD

The Jenkins pipeline is set up to automatically build and publish the Master branche to the PyPI server.

The Development and Master branches are automatically built and published to the Vito Artifactory (https://repo.vito.be/artifactory/api/pypi/marvin-projects-pypi-local).

Contact

For questions or issues, please reach out to the project maintainers:

License

This project is licensed under the MIT License. See the LICENSE.md file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sasair-0.1.3.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sasair-0.1.3-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file sasair-0.1.3.tar.gz.

File metadata

  • Download URL: sasair-0.1.3.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.0 CPython/3.10.16 Linux/6.8.0-40-generic

File hashes

Hashes for sasair-0.1.3.tar.gz
Algorithm Hash digest
SHA256 52672a6bc9399a7e08b293a1d175789b5aae2ad63dda8d4c2aec2d1933c4f75a
MD5 5cbb3761ef979f1f1352f5cd09b549b7
BLAKE2b-256 10cffe6bcdc5c696ec8650ca3d033d175fe000e8258f767967498b4f8aafc9fc

See more details on using hashes here.

File details

Details for the file sasair-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: sasair-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.0 CPython/3.10.16 Linux/6.8.0-40-generic

File hashes

Hashes for sasair-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5c9ac5e3c963f9505d0fc308111b93cb3ffbf284d24225cd226104dbbf435642
MD5 02a36e97b06f4ae64db99871368af053
BLAKE2b-256 ff37da95293c6c0af61a50c4951995fa0a5abc2b68c5193f04009cf531efbe63

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page