Metadata-Version: 2.1
Name: erddapy
Version: 0.3.1
Summary: Python interface for ERDDAP
Home-page: https://github.com/ioos/erddapy
Author: Filipe Fernandes
Author-email: ocefpaf@gmail.com
License: UNKNOWN
Description: <h1 align="center" style="margin:1em;">
          <a href="https://ioos.github.io/erddapy/">erddapy</a>
        </h1>
        
        <h4 align="center">
        erddapy: ERDDAP + Python.
        </h4>
        
        <p align="center">
        <!-- https://shields.io/ is a good source of these -->
        <a href="https://anaconda.org/conda-forge/erddapy">
        <img src="https://img.shields.io/conda/dn/conda-forge/erddapy.svg"
         alt="conda-forge downloads" /></a>
        <a href="https://github.com/ioos/erddapy/releases">
        <img src="https://img.shields.io/github/tag/ioos/erddapy.svg"
         alt="Latest version" /></a>
        <a href="https://github.com/ioos/erddapy/commits/master">
        <img src="https://img.shields.io/github/commits-since/ioos/erddapy/latest.svg"
         alt="Commits since last release" /></a>
        <a href="https://github.com/ioos/erddapy/graphs/contributors">
        <img src="https://img.shields.io/github/contributors/ioos/erddapy.svg"
         alt="# contributors" /></a>
        <a href="https://travis-ci.org/ioos/erddapy/branches">
        <img src="https://api.travis-ci.org/repositories/ioos/erddapy.svg?branch=master"
         alt="Travis-CI" /></a>
        <a href="https://zenodo.org/badge/latestdoi/104919828">
        <img src="https://zenodo.org/badge/104919828.svg"
         alt="zenodo" /></a>
        </p>
        <br>
        
        
        
        # Table of contents
        
        <!-- toc -->
        
        - [Overview](#overview)
          - [Example](#example)
        - [Get in touch](#get-in-touch)
        - [License and copyright](#license-and-copyright)
        
        <!-- tocstop -->
        
        
        ## Overview
        
        Easier access to scientific data.
        
        erddapy takes advantage of ERDDAP's RESTful web services and creates the ERDDAP URL for any request,
        like searching for datasets, acquiring metadata, downloading the data, etc.
        
        What is ERDDAP?
        ERDDAP unifies the different types of data servers and offers a consistent way to get the data in multiple the formats.
        
        ### Example
        
        ```python
        from erddapy import ERDDAP
        
        
        e = ERDDAP(
          server='https://data.ioos.us/gliders/erddap',
          protocol='tabledap',
        )
        
        e.response = 'csv'
        e.dataset_id = 'whoi_406-20160902T1700'
        e.constraints = {
            'time>=': '2016-07-10T00:00:00Z',
            'time<=': '2017-02-10T00:00:00Z',
            'latitude>=': 38.0,
            'latitude<=': 41.0,
            'longitude>=': -72.0,
            'longitude<=': -69.0,
        }
        e.variables = [
            'depth',
            'latitude',
            'longitude',
            'salinity',
            'temperature',
            'time',
        ]
        
        df = e.to_pandas()
        ```
        
        
        ## Get in touch
        
        Report bugs, suggest features or view the source code on [GitHub](https://github.com/ioos/erddapy/issues).
        
        
        ## License and copyright
        
        Erddapy is licensed under BSD 3-Clause "New" or "Revised" License (BSD-3-Clause).
        
        Development occurs on GitHub at <https://github.com/ioos/erddapy>.
Keywords: ERDDAP,Scientific Python,Remote data access
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: License :: OSI Approved :: BSD License
Description-Content-Type: text/markdown
Provides-Extra: testing
