Metadata-Version: 2.4
Name: dovwms
Version: 0.0.7
Summary: Simple client for DOV WMS services.
License-File: LICENSE
Author: Mateusz Zawadzki
Author-email: zawadzkimat@outlook.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: owslib (>=0.34.1,<0.35.0)
Requires-Dist: shapely (>=2.1.2,<3.0.0)
Description-Content-Type: text/markdown

# dovwms

[![Release](https://img.shields.io/github/v/release/zawadzkim/dovwms)](https://img.shields.io/github/v/release/zawadzkim/dovwms)
[![Build status](https://img.shields.io/github/actions/workflow/status/zawadzkim/dovwms/publish-to-pypi.yaml?branch=master)](https://github.com/zawadzkim/dovwms/actions/workflows/publish-to-pypi.yml?query=branch%master)
[![codecov](https://codecov.io/gh/zawadzkim/dovwms/branch/main/graph/badge.svg)](https://codecov.io/gh/zawadzkim/dovwms)
[![Commit activity](https://img.shields.io/github/commit-activity/m/zawadzkim/dovwms)](https://img.shields.io/github/commit-activity/m/zawadzkim/dovwms)
[![License](https://img.shields.io/github/license/zawadzkim/dovwms)](https://img.shields.io/github/license/zawadzkim/dovwms)
[![DOI](https://zenodo.org/badge/1083879188.svg)](https://doi.org/10.5281/zenodo.17451247)

Simple client for DOV WMS services.

Lightweight Python client to fetch soil texture and elevation data from
Belgian WMS services (DOV and Geopunt). The package provides convenience
clients for the two services and a small helper to fetch a soil profile at
a point location.

- Repository: <https://github.com/zawadzkim/dovwms/>
- Docs: <https://zawadzkim.github.io/dovwms/>

## Features

- Fetch clay/silt/sand fractions for standard depth layers from DOV WMS
- Fetch elevation from Geopunt WMS
- Small, testable API with helpers for convenience and easy mocking

## Installation

Requires Python 3.11+. Install from PyPI (when released):

```bash
pip install dovwms
```

For development from source (recommended):

```bash
git clone git@github.com:zawadzkim/dovwms.git
cd dovwms
make install   # installs dev dependencies (uses poetry or pip in Makefile)
```

You can also install the package in editable mode:

```bash
python -m pip install -e .
```

## Quickstart

Simple usage with the convenience function:

```python
from dovwms import get_profile_from_dov

# Coordinates in the default CRS (EPSG:31370 / Lambert72)
profile = get_profile_from_dov(247172.56, 204590.58, fetch_elevation=True)

if profile is None:
    print("Could not fetch profile")
else:
    # profile is a dict with keys 'layers' (list) and optional 'elevation'
    print("Elevation:", profile.get('elevation'))
    for layer in profile['layers']:
        print(layer['name'], layer['sand_content'], layer['silt_content'], layer['clay_content'])
```

Using the low-level clients:

```python
from dovwms import DOVClient, GeopuntClient
from shapely.geometry import Point

client = DOVClient()
pt = Point(247172.56, 204590.58)

# Fetch texture layers
profile = client.fetch_profile(pt, fetch_elevation=False)

# Fetch elevation directly
g = GeopuntClient()
elev = g.fetch_elevation(pt)
```

Notes

- `fetch_profile` returns a dict with a `layers` key (list of layer dicts).
- Use the module-level loggers to enable/inspect runtime information; the
  library does not configure logging handlers by default.

## Testing

Run the test suite with pytest (excl. integration tests). Development dependencies include pytest.

```bash
make test
```

Integration tests that require network access are marked `integration` and
can be executed explicitly:

```bash
pytest -q -m integration
```

## Contributing

Contributions are welcome. Please open issues or pull requests. Follow the
project's code style and run tests before submitting changes.

## License

MIT

---

Repository scaffolded from fpgmaas/cookiecutter-poetry.

