Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Aug 23, 2018
1 parent 79e662b commit 2a086ce
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 24 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include LICENSE
recursive-include nexrad_quickplot/data *.wld
recursive-include nexradutils/data *.wld
recursive-include tests *.py *.png
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[![Travis-CI](https://travis-ci.org/scivision/nexrad-quick-plot.svg?branch=master)](https://travis-ci.org/scivision/nexrad-quick-plot)
[![Coveralls.io](https://coveralls.io/repos/github/scivision/nexrad-quick-plot/badge.svg?branch=master)](https://coveralls.io/github/scivision/nexrad-quick-plot?branch=master)
[![AppVeyor Build Station](https://ci.appveyor.com/api/projects/status/jmiiyri2xqdvu5wm?svg=true)](https://ci.appveyor.com/project/scivision/nexrad-quick-plot)
[![image](https://img.shields.io/pypi/pyversions/NEXRAD-quickplot.svg)](https://pypi.python.org/pypi/NEXRAD-quickplot)
[![image](https://img.shields.io/pypi/format/NEXRAD-quickplot.svg)](https://pypi.python.org/pypi/NEXRAD-quickplot)
[![Maintainability](https://api.codeclimate.com/v1/badges/d2df020d3c1e6522412a/maintainability)](https://codeclimate.com/github/scivision/nexrad-quick-plot/maintainability)
[![PyPi Download stats](http://pepy.tech/badge/NEXRAD-quickplot)](http://pepy.tech/project/NEXRAD-quickplot)
[![Build Status](https://travis-ci.org/scivision/NEXRADutils.svg?branch=master)](https://travis-ci.org/scivision/NEXRADutils)
[![Coverage Status](https://coveralls.io/repos/github/scivision/NEXRADutils/badge.svg?branch=master)](https://coveralls.io/github/scivision/NEXRADutils?branch=master)
[![Build status](https://ci.appveyor.com/api/projects/status/dasnnsarbyankxqb?svg=true)](https://ci.appveyor.com/project/scivision/nexradutils)
[![Maintainability](https://api.codeclimate.com/v1/badges/05529f213d77cfa3c1f2/maintainability)](https://codeclimate.com/github/scivision/NEXRADutils/maintainability)
[![image](https://img.shields.io/pypi/pyversions/NEXRADutils.svg)](https://pypi.python.org/pypi/NEXRADutils)
[![image](https://img.shields.io/pypi/format/NEXRADutils.svg)](https://pypi.python.org/pypi/NEXRADutils)

# Nexrad Quick-plot
[![PyPi Download stats](http://pepy.tech/badge/NEXRADutils)](http://pepy.tech/project/NEXRADutils)

# NEXRAD utilities

Easy Python download and plot NEXRAD N0Q compositive reflectivity.
Uses RGB high resolution PNG images of North America.
Expand All @@ -33,7 +34,7 @@ We use `xarray.DataArray` and plot image by image.
For high-fidelity science data, the lower level data are needed--contact us if interested.

```python
import nexrad_quickplot as nq
import nexradutils as nq

dat = nq.load('~/data/2015-01-19/nexrad/nexrad2015-01-19T01:15:00.png')

Expand Down Expand Up @@ -76,7 +77,7 @@ download-nexrad 2018-01-01T00 2018-01-03T00 ~/data/nexrad

### Plot NEXRAD reflectivity data

NEXRAD QuickPlot plots are georegistered via
NEXRAD plots are georegistered via
[Cartopy](https://pypi.org/project/Cartopy/),
which is the replacement for
[deprecated Basemap](https://www.scivision.co/cartopy-replace-deprecated-basemap/)
Expand Down
2 changes: 1 addition & 1 deletion download_nexrad.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import concurrent.futures
import itertools
from argparse import ArgumentParser
import nexrad_quickplot as nq
import nexradutils as nq


def main():
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion plot_nexrad.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from pathlib import Path
from argparse import ArgumentParser
from matplotlib.pyplot import show
import nexrad_quickplot.plots as nqp
import nexradutils.plots as nqp


SCALEFN = Path(__file__).parent / 'doc' / 'n0q_ramp.png'
Expand Down
4 changes: 0 additions & 4 deletions pyproject.toml

This file was deleted.

6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[metadata]
name = NEXRAD_quickplot
version = 0.6.7
name = nexradutils
version = 0.6.8
author = Michael Hirsch, Ph.D.
url = https://github.com/scivision/nexrad-quick-plot
url = https://github.com/scivision/nexradutils
description = easily download and plot NEXRAD weather radar reflectivity data
keywords =
nexrad
Expand Down
4 changes: 2 additions & 2 deletions tests/test_mod.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from datetime import datetime
import os
#
import nexrad_quickplot as nq
import nexradutils as nq

odir = Path(__file__).parent

Expand Down Expand Up @@ -52,4 +52,4 @@ def test_keo():


if __name__ == '__main__':
pytest.main(['-x', __file__])
pytest.main(['-xrsv', __file__])
4 changes: 2 additions & 2 deletions tests/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


def test_download_load():
pytest.importorskip('matplotlib')
pytest.importorskip('cartopy')

with tempfile.TemporaryDirectory() as d:
odir = Path(d)
Expand All @@ -20,4 +20,4 @@ def test_download_load():


if __name__ == '__main__':
pytest.main(['-x', __file__])
pytest.main(['-xrsv', __file__])

0 comments on commit 2a086ce

Please sign in to comment.