inadequate RHOHV values in the radar file #1593
-
DescriptionI want to add the Hydrometeor Classification Field into my radar object and I have which does that by considering the Z, ZDR, RHOHV & KDP fileds. The problem is that the RHOHV filed in my radar file is incorrect. maybe when they made the file at the source, they made a mistake. Due to wrong RHOHV values, hydrometeor classification field is not coming out correct. How can I overcome this issue? What I DidInitialize lists to store heights and Z values for each profileall_heights = [] Iterate over each file and apply the QVP codefor file in files:
Convert the lists to numpy arrays for plottingheights_array1 = np.vstack(all_heights) Choose a specific height from heights_arrayselected_heights1 = heights_array1[0,: ] Convert the time list to a NumPy array and then to matplotlib date formattimes_array = date2num(np.array(all_times)) |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
@MohitDahliya - without the data file mentioned here, I am not sure what we can do to help. You can use gatefilter to quality control your data, to see if that improves the analysis But beyond that, we cannot make any specific recommendations |
Beta Was this translation helpful? Give feedback.
-
I have another data file for another day in which all the variables are correct. Is there some way I can compare with that file to improve my RHOHV values.? |
Beta Was this translation helpful? Give feedback.
-
If you want, I can provide you my data file... |
Beta Was this translation helpful? Give feedback.
-
@MohitDahliya - unfortunately this is a data quality issue that one cannot be resolved from using Py-ART. Py-ART cannot re-compute these fields. |
Beta Was this translation helpful? Give feedback.
-
No problem, I understand.
…On Mon, Jun 17, 2024 at 7:20 AM Max Grover ***@***.***> wrote:
@MohitDahliya <https://github.com/MohitDahliya> - unfortunately this is a
data quality issue that one cannot be resolved from using Py-ART. Py-ART
cannot re-compute these fields.
—
Reply to this email directly, view it on GitHub
<#1593 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQACDYWLB4OSP6O3TJZRVQ3ZH3WD7AVCNFSM6AAAAABIZ4S74GVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TOOJVGM4DK>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Aptos;
panose-1:2 11 0 4 2 2 2 2 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
font-size:12.0pt;
font-family:"Aptos",sans-serif;}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
span.EmailStyle19
{mso-style-type:personal-reply;
font-family:"Aptos",sans-serif;
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-size:10.0pt;
mso-ligatures:none;}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
{page:WordSection1;}
-->If you want to discuss this issue more generally I suggest the Open Radar Science discoursehttps://openradar.discourse.group/ From: MohitDahliya ***@***.***>Date: Tuesday, June 18, 2024 at 02:08To: ARM-DOE/pyart ***@***.***>Cc: Subscribed ***@***.***>Subject: Re: [ARM-DOE/pyart] inadequate RHOHV values in the radar file (Discussion #1593)No problem, I understand. On Mon, Jun 17, 2024 at 7:20 AM Max Grover ***@***.***> wrote: > @MohitDahliya <https://github.com/MohitDahliya> - unfortunately this is a > data quality issue that one cannot be resolved from using Py-ART. Py-ART > cannot re-compute these fields. > > — > Reply to this email directly, view it on GitHub > <#1593 (comment)>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/AQACDYWLB4OSP6O3TJZRVQ3ZH3WD7AVCNFSM6AAAAABIZ4S74GVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TOOJVGM4DK> > . > You are receiving this because you were mentioned.Message ID: > ***@***.***> > —Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
@MohitDahliya - without the data file mentioned here, I am not sure what we can do to help. You can use gatefilter to quality control your data, to see if that improves the analysis
https://arm-doe.github.io/pyart/notebooks/masking_data_with_gatefilters.html
But beyond that, we cannot make any specific recommendations