Metadata-Version: 2.1
Name: SASAIR
Version: 0.1.4
Summary: SAS Atmosphere Interface & Retrieval
Author: Roeland Maes
Author-email: roeland.maes@vito.be
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: cds
Provides-Extra: full
Provides-Extra: loguru
Provides-Extra: sphinx
Requires-Dist: cachetools (>=5.3,<6.0)
Requires-Dist: cdsapi (>=0.7,<0.8) ; extra == "cds" or extra == "full"
Requires-Dist: loguru (>=0.7,<0.8) ; extra == "loguru" or extra == "full"
Requires-Dist: myst_parser (>=3.0) ; extra == "sphinx" or extra == "full"
Requires-Dist: pydantic (>=2.0,<3.0)
Requires-Dist: requests (>=2.31,<3.0)
Requires-Dist: sphinx (>=8.1) ; extra == "sphinx" or extra == "full"
Requires-Dist: sphinx-autodoc-typehints (>=3.0) ; extra == "sphinx" or extra == "full"
Requires-Dist: sphinx_rtd_theme (>=1.0) ; extra == "sphinx" or extra == "full"
Requires-Dist: tomli (>=2.1) ; extra == "sphinx" or extra == "full"
Description-Content-Type: text/markdown


# 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:
- SOS API (e.g.: https://geo.irceline.be/sos/)
- CAMS (Wrapper for the CDS API; https://ads.atmosphere.copernicus.eu/how-to-api)
- Realtime WFS (Partial implementation of the WFS API; https://geo.irceline.be/realtime/ows)

## Installation with pip

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

```bash
pip install sasair 
```

## Building from Source

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

1. Clone the repository:

```bash
git clone https://git.vito.be/projects/MARVIN/repos/sasair
cd sasair
```
2. Create the Python environment:

```bash
conda env create --prefix ./.venv --file conda_env.yml
conda activate .\.venv
```
3. Install the package:

```bash
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:

```python
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:

```python
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](https://cds.climate.copernicus.eu/how-to-api)) to avoid passing them as parameters.

### ircel_wfs_client

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

Usage:
```python
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:
```python
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/rma/sasair/](http://docs.marvin.vito.local/rma/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:

- **Roeland Maes**: [roeland.maes@vito.be](mailto:roeland.maes@vito.be)


## License

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

