Library with wave tools like ESTELA


Keywords
waves, xarray, ESTELA
License
MIT
Install
pip install olas==0.1.7

Documentation

olas

pypi package version conda-forge version python supported shield

Library with wave tools. At the moment it only includes a prototype of ESTELA.

Documentation: https://jorgeperezg.github.io/olas

The documentation is generated with poetry run portray on_github_pages

Installation

Installation with conda is straightforward

conda install -c conda-forge olas

Installation with pip requires cartopy (it can be installed with conda install -c conda-forge cartopy):

pip install olas

Basic usage

Calculate and plot ESTELA maps from netcdf files.

from olas.estela import calc, plot
estelas = calc("./tests/sample_files/test20180101T??.nc", 44, -4, "hs", "tp", "dp")
plot(estelas, outdir=".")
plot(estelas, gainloss=True, outdir=".")