forked from ARM-DOE/pyart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_ppi_mdv.py
30 lines (24 loc) · 879 Bytes
/
plot_ppi_mdv.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
=================================
Create a PPI plot from a MDV file
=================================
An example which creates a PPI plot of a MDV file using a RadarDisplay object.
"""
print(__doc__)
# Author: Jonathan J. Helmus ([email protected])
# License: BSD 3 clause
import matplotlib.pyplot as plt
import pyart
filename = '110635.mdv'
# create the plot using RadarDisplay
radar = pyart.io.read_mdv(filename)
display = pyart.graph.RadarDisplay(radar)
fig = plt.figure(figsize=[5, 5])
ax = fig.add_subplot(111, frameon=False)
display.plot('reflectivity', 0, vmin=-16., vmax=64,
mask_tuple=['normalized_coherent_power', 0.5],
colorbar_flag=False, title_flag=False,
axislabels_flag=False)
display.set_limits(ylim=[-120, 120], xlim=[-120, 120])
fig.subplots_adjust(left=0, bottom=0, right=1, top=1, wspace=0, hspace=0)
plt.show()