Metadata-Version: 2.1
Name: pygrib
Version: 2.1.4
Summary: Python module for reading/writing GRIB files
Home-page: https://github.com/jswhit/pygrib
Author: Jeff Whitaker
Author-email: jeffrey.s.whitaker@noaa.gov
License: License :: OSI Approved :: MIT License
Download-URL: http://python.org/pypi/pygrib
Description: [![Install and Test Status](https://github.com/jswhit/pygrib/workflows/Install%20and%20Test/badge.svg)](https://github.com/jswhit/pygrib/actions)
        [![PyPI package](https://badge.fury.io/py/pygrib.svg)](http://python.org/pypi/pygrib)
        [![Anaconda-Server Badge](https://anaconda.org/conda-forge/pygrib/badges/version.svg)](https://anaconda.org/conda-forge/pygrib)
        [![DOI](https://zenodo.org/badge/28599617.svg)](https://zenodo.org/badge/latestdoi/28599617)
        
        Provides a high-level interface to the ECWMF [ECCODES](https://confluence.ecmwf.int/display/ECC) C library for reading GRIB files.
        There are limited capabilities for writing GRIB files (you can modify the contents of an existing file, but you can't create one from scratch).  See the online docs for 
        [example usage](https://jswhit.github.io/pygrib/api.html#example-usage).
        
        Quickstart
        ==========
        
        The easiest way to get everything installed is to use [pip](https://py.pypa.io):
        
        ```
        pip install pygrib
        ```
        
        You can also use [conda](https://docs.conda.io/en/latest/):
        
        ```
        conda install -c conda-forge pygrib
        ```
        
        Alternately, clone the github repo and run `python setup.py install` (after setting `$ECCCODES_DIR`)
        where `$ECCODES_DIR` is the path to the directory containing `include/grib_api.h`
        and `lib/libeccodes.so`. If `ECCODES_DIR` is not specified, a few common locations
        such as `$CONDA_PREFIX,/usr,/usr/local,/opt/local` will be searched.
        
        For full installation instructions and API documentation, see https://jswhit.github.io/pygrib.
        
        Sample [IPython](http://ipython.org/) notebooks illustrating pygrib usage: 
        * http://nbviewer.jupyter.org/gist/jswhit/8635665
        * https://github.com/scollis/HRRR/blob/master/notebooks/HRRR%20Grib.ipynb
        
        Questions or comments - contact Jeff Whitaker <jeffrey.s.whitaker@noaa.gov>
        or use https://github.com/jswhit/pygrib/issues.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
