Skip to main content

Bivariate polar plots in Python

Project description

Bivariate polar plots in Python

What it says on the tin. This repo provides functions for producing bivariate polar plots, a useful graphical analysis tool in air pollution research. This implementation is largely based on the R package openair and Carslaw and Beevers (2013) - these sources also provide some excellent example cases of bivariate polar plots in practice.

What bivapp does and does not provide

bivapp is intended to provide bivariate polar plots similar to the implementation in openair and as described by Carslaw and Beevers (2013). It is not intended to be a full-featured alternative to openair, as that package provides enough features that it is effectively a complete data analysis suite for air pollution studies. Many of openair's features are already available in other popular Python libraries. For example, openair provides a function for calculating Theil-Sen slopes, but scikit-learn and scipy already feature such tools.

bivapp currently also does not support producing windroses. See windrose instead. This may change in the future.

Documentation

At this early stage functions are only self-documented. Proper documentation is planned.

Getting started

Install from PyPI: pip install bivapp.

Note that because the dependency pyGAM has fallen behind on maintenance bivapp depends on specific versions of some common dependencies, so you might want to use it in a dedicated virtual environment for the time being.

Here's an example of a basic plotting setup.

from bivapp.sampledata import ImportOpenairDataExample
import bivapp.plots as bp

df = ImportOpenairDataExample()
fig, axs = bp.BivariatePlotRawGAM(
    df["so2"],
    df["ws"],
    df["wd"],
    pred_res=200,
    positive=True,
    vmin=None,
    vmax=df["so2"].quantile(0.9),
    cmap=cm.batlowK,
    colourbar_label="SO$_2$ [ppbv]",
    masking_method="near",
    near_dist=1,
)
fig.set_figwidth(6)
fig.set_figheight(4.5)

Example from BivariatePlotRawGAM

Existing solutions

The openair package for R provides all these features, but is obviously in R and not Python. The topic of bivariate polar plots in Python also pops up occasionally, like here, here, here, and here. Lastly, there is the existing windrose library, but it lacks bivariate polar plots.

Differences from openair

Users should be aware that the implementation of smoothed bivariate polar plots in this library differs from openair. openair uses the mgcv R package to fit a thin-plate spline GAM to smooth their bivariate polar plots. In their implementation, they bin input data by wind direction and speed, and then fit the GAM to this binned data. In bivapp there is currently only one method that fits a GAM, BivariatePlotRawGAM. This method differs from openair's in a couple ways: first, the GAM is fit to the raw measurements rather than binned measurements; second, due to differences in GAM libraries (and their documentation), we are not exactly replicating the thin-plate spline approach. Instead, bivapp fits a GAM to a tensor product of the $u$ and $v$ components of the input wind data. Thus, the GAM-smoothed bivariate polar plot in bivapp is not a perfect replication of openair's smoothed plots, but does appear to achieve the same goal of producing a reasonably smoothed plot.

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

bivapp-0.1.0.tar.gz (2.6 MB view details)

Uploaded Source

Built Distribution

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

bivapp-0.1.0-py3-none-any.whl (2.6 MB view details)

Uploaded Python 3

File details

Details for the file bivapp-0.1.0.tar.gz.

File metadata

  • Download URL: bivapp-0.1.0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bivapp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c8d3885eb3650e1dabbb5334294fabc860bae4571705ab7e0d21d739ac050984
MD5 2c4caf5e08fd362f0c66dc29e13e8dc4
BLAKE2b-256 9d056d39b82a307c00ab65b736cbbe2111e01e39db97aaf8c46d281fc5ce28af

See more details on using hashes here.

Provenance

The following attestation bundles were made for bivapp-0.1.0.tar.gz:

Publisher: publish-to-pypi.yml on Zelpuz/bivapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bivapp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: bivapp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bivapp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 05aa0ca6f2a2c96d0ee1f0aece03a10c7ef1bccf86f1cf8c5319d8547873724c
MD5 a058f92eade17de1b89a86f82e144d47
BLAKE2b-256 10d21bdd4150cefdd72f07d4386afbc4bfb564b3efdfa1853fc8b9899e3d604d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bivapp-0.1.0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on Zelpuz/bivapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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