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.
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()