Metadata-Version: 2.2
Name: nexradaws
Version: 2.0.0
Summary: Query and download NEXRAD data from AWS S3 storage.
Author: Aaron Anderson
License: MIT
Project-URL: Homepage, https://nexradaws.readthedocs.io/en/latest/
Project-URL: Documentation, https://nexradaws.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/aarande/nexradaws
Project-URL: Issues, https://github.com/aarande/nexradaws/issues
Keywords: weather,radar,nexrad,aws,amazon
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3
Requires-Dist: pytz
Provides-Extra: pyart
Requires-Dist: arm_pyart; extra == "pyart"

[![CI](https://github.com/aarande/nexradaws/actions/workflows/ci.yml/badge.svg)](https://github.com/aarande/nexradaws/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/aarande/nexradaws/branch/master/graph/badge.svg)](https://codecov.io/gh/aarande/nexradaws) [![Documentation Status](https://readthedocs.org/projects/nexradaws/badge/?version=latest)](http://nexradaws.readthedocs.io/en/latest/?badge=latest) [![Documentation Status](https://readthedocs.org/projects/nexradaws/badge/?version=devel)](http://nexradaws.readthedocs.io/en/devel/?badge=devel)
# nexradaws
This module is designed to allow you to query and download Nexrad
radar files from Amazon Web Services S3 Storage. The real-time feed and full historical archive of original
resolution (Level II) NEXRAD data, from June 1991 to present, is now freely available on Amazon S3 for anyone to use.
More information can be found here https://aws.amazon.com/public-datasets/nexrad/.

nexradaws supports Python 3.8+.

Github - https://github.com/aarande/nexradaws

PyPi - https://pypi.python.org/pypi/nexradaws

Docs - http://nexradaws.readthedocs.io/en/latest/

**Required dependencies**

* boto3
* pytz

**Optional dependencies**

* pyart

**Install with pip**::

    pip install nexradaws
    pip install nexradaws[pyart] - to install with pyart support   

New in version 2.0:
* Updated to support Python 3.8+, dropped support for Python 2.7.
* Update to new bucket names for NEXRAD data.
* Fix for NoneType when time is in future

New in version 1.1:
* Bug fix for varying filename extensions over the years (.gz .V06 etc). Thanks Nick Guy for the PR!


