Tools to work with vertical profile time series.
Project description
vptstools
vptstools is a Python library to transfer and convert vpts data. VPTS (vertical profile time series) express the density, speed and direction of biological signals such as birds, bats and insects within a weather radar volume, grouped into altitude layers (height) and measured over time (datetime).
Installation
Python 3.9+ is required.
pip install vptstools
If you need the tools/services to transfer data (SFTP, S3) install these additional dependencies:
pip install vptstools\[transfer\]
Usage
As a library user interested in working with ODIM h5 and vpts files, the most important functions provided by the
package are {py:func}vptstools.vpts.vp
, {py:func}vptstools.vpts.vpts
and {py:func}vptstools.vpts.vpts_to_csv
,
which can be used respectively to convert a single h5
file, a set of h5
files and save a vpts
DataFrame
to a csv-file:
- Convert a single local ODIM h5 file to a vp DataFrame:
from vptstools.vpts import vp
file_path_h5 = "./NLDBL_vp_20080215T0010_NL50_v0-3-20.h5"
df_vp = vp(file_path_h5)
- Convert a set of locally stored ODIM h5 files to a vpts DataFrame:
from pathlib import Path
from vptstools.vpts import vpts
file_paths = sorted(Path("./data").rglob("*.h5")) # Get all h5 files within the data directory
df_vpts = vpts(file_paths)
- Store a
vp
orvpts
DataFrame to a VPTS CSV file:
from vptstools.vpts import vpts_to_csv
vpts_to_csv(df_vpts, "vpts.csv")
Both {py:func}`vptstools.vpts.vp` and {py:func}`vptstools.vpts.vpts` have 2 other optional parameters related to the
[VPTS-CSV data exchange format](https://aloftdata.eu/vpts-csv/). The `vpts_csv_version` parameter defines the version of the
[VPTS-CSV data exchange standard](https://aloftdata.eu/vpts-csv/) (default v1) whereas the `source_file` provides a way to define
a custom [source_file](https://aloftdata.eu/vpts-csv/#source_file) field to reference the source from which the
data were derived.
To validate a vpts DataFrame against the frictionless data schema as defined by the VPTS-CSV data exchange
format and return a report, use the {py:func}vptstools.vpts.validate_vpts
:
from vptstools.vpts import validate_vpts
report = validate_vpts(df_vpts, version="v1")
report.stats["errors"]
Other modules in the package are:
- {py:mod}
vptstools.odimh5
: This module extents the implementation of the original odimh5 package which is now deprecated. - {py:mod}
vptstools.vpts_csv
: This module contains - for each version of the VPTS-CSV exchange format - the corresponding implementation which can be used to generate avp
orvpts
DataFrame. For more information on how to support a new version of the VPTS-CSV format, see contributing docs. - {py:mod}
vptstools.s3
: This module contains the functions to manage the aloft data repository](https://aloftdata.eu/browse/) S3 Bucket.
CLI endpoints
In addition to using functions in Python scripts, two vptstools routines are available to be called from the command line after installing the package:
.. include:: click.rst
Development instructions
See contributing for a detailed overview and set of guidelines. If familiar with tox
,
the setup of a development environment boils down to:
tox -e dev # Create development environment with venv and register an ipykernel.
source venv/bin/activate # Activate this environment to get started
Next, the following set of commands are available to support development:
tox # Run the unit tests
tox -e docs # Invoke sphinx-build to build the docs
tox -e format # Run black code formatting
tox -e clean # Remove old distribution files and temporary build artifacts (./build and ./dist)
tox -e build # Build the package wheels and tar
tox -e linkcheck # Check for broken links in the documentation
tox -e publish # Publish the package you have been developing to a package index server. By default, it uses testpypi. If you really want to publish your package to be publicly accessible in PyPI, use the `-- --repository pypi` option.
tox -av # List all available tasks
To create a pinned requirements.txt
set of dependencies, pip-tools is used:
pip-compile --extra transfer --resolver=backtracking`
Notes
- This project has been set up using PyScaffold 4.3.1. For details and usage information on PyScaffold see https://pyscaffold.org/.
- The
odimh5
module was originally developed and released to pypi as a separateodimh5
package by Nicolas Noé (@niconoe). Version 0.1.0 has been included into this vptstools package.
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
Built Distribution
File details
Details for the file vptstools-0.2.0.tar.gz
.
File metadata
- Download URL: vptstools-0.2.0.tar.gz
- Upload date:
- Size: 419.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fadcdd6f9a9024c0bef751d81c3348942440bf636921c7f92083e6666cad5be5 |
|
MD5 | 9423f61def213ccdf45201e2dbc863cc |
|
BLAKE2b-256 | 67c2867f3772cb3cd80c345fbced8fef143a9e5f17953fa7251f775ae65f9ce0 |
File details
Details for the file vptstools-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: vptstools-0.2.0-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00e8174d8f1ee1ad5f4828e613738f788738b00b2eb81745f8e85399bc6395c1 |
|
MD5 | 9402a39084d44f00069fd87033149cd8 |
|
BLAKE2b-256 | a90191e9a0dfa40f4eb11886c3d8bbe34198ce7a87489779a39fc626bde3ed2f |