Skip to content

Plotting negative elevation angles for RHI scans #1270

Answered by mgrover1
scollis asked this question in Q&A
Discussion options

You must be logged in to vote

@Ted-Whittock I took a look at your sample file, and noticed that within the data quality parameters (antenna transition), they flag the negative elevation angles... by default, we filter out these transitions in the plot_rhi function, but you can change this behavior by setting

filter_transitions=False

for example, I used the following snippet

import pyart
import matplotlib.pyplot as plt

radar = pyart.io.read("cfrad.20170203_160235.683_to_20170203_160247.799_DOW7_v245_s03_az65.00_RHI.nc")

display = pyart.graph.RadarDisplay(radar)

display = pyart.graph.RadarDisplay(radar)
display.plot_rhi("DBZHCC", cmap='pyart_HomeyerRainbow', filter_transitions=False, edges=False)
plt.ylim(-5, 10)

whi…

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by mgrover1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
4 participants
Converted from issue

This discussion was converted from issue #1255 on September 22, 2022 16:53.