/gliderpy

gliderpy is a thin wrapper around erddapy with custom methods and plotting functionality to browse, fetch, and plot glider data.

Primary LanguageJupyter NotebookBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

gliderpy

Gliderpy aims to facilitate effortless access to glider data hosted on ERDDAP servers. Gliderpy is a high level wrapper around erddapy, with glider specific tooling and in-built plotting methods.

Try it out on binder Binder

Documentation and code

URLs for the docs and code.

Installation

For conda users you can

conda install --channel conda-forge gliderpy

or, if you are a pip users

pip install gliderpy

Example

from gliderpy.fetchers import GliderDataFetcher

glider_grab = GliderDataFetcher()

glider_grab.fetcher.dataset_id = "whoi_406-20160902T1700"
df = glider_grab.to_pandas()