Skip to content

Commit

Permalink
Merge pull request ARM-DOE#744 from zxdawn/master
Browse files Browse the repository at this point in the history
Fix written error
  • Loading branch information
scollis authored May 22, 2018
2 parents dbe4d70 + c1af490 commit 9b64e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyart/graph/radarmapdisplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def plot_ppi_map(
else: # using width and height
# map domain determined from location of radar gates
if width is None:
width = (x.max() - y.min()) * 1000.
width = (x.max() - x.min()) * 1000.
if height is None:
height = (y.max() - y.min()) * 1000.
basemap = Basemap(
Expand Down

0 comments on commit 9b64e79

Please sign in to comment.