Processing wind through point_stat #1207
-
Hi, I am new to using the MET software and am confused on how to create wind statistics. I am comparing WRF output to point statistics. I am trying to get a temperature and wind speed/direction verification. I think from what I read, I need to get a mixed pair set of speeds and direction to get the stat I am supposed to create. The good...I seem to be doing okay on the WRF side and the scalar temerature side. When running point_stat I used For the OBS I successfully readin the temperature, but it does not allow any of my wind data to go through with the following configuration. I am getting matched pairs in my temperature and for the most part they look reasonable. On the other hand it is stating that there are no match in the winds. One thought I had was that WRF outputs the winds as U and V (U10 and V10) with the obs are speed and direction). I tried using changing obs = entry from to and that produced a mixed pair including the model's u-comp wind and the observed scalar wind speed (clearly not what I want but proved I could read winds that are there. So...is my issue at the ascii2nc step where I output the native speed and direction instead a U/V? Is it before that because I am using the raw WRF output (does it need to go through another step)? Or is there something wrong with my configuration at the point_stat level. Sorry, if this was written excessively long. Thanks for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 5 replies
-
Hi, This might not answer your question directly, but when we started playing with the wind fields I noted the following in one of my scripts (note these come more from a METplus config file). This came from a GridStat job but may well also fit into a PointStat job.
So my config looked something like: There may well be a cleaner answer to your question (which the DTC people may provide), but thought I show one possible approach. Rob |
Beta Was this translation helpful? Give feedback.
-
Hi Glenn: If I am reading things correctly, it seems like you have different variables in your gridded model versus point observations (the u and v wind components in the model and a speed/direction in the observations). I think you want to convert one of these so it matches the other. Do you have the u and v components in your point data? Also, what are the original data formats for your model and point data? It looks like your model data might be in grib/grib2, but what was the original format of the point data? Tina |
Beta Was this translation helpful? Give feedback.
-
Hi Tina, First, let me preface by saying this is my first attempt at MET so I may be making some basic mistakes. You are correct that my observations and model report the wind differently. My observations reports wind speed and wind direction and my model outputs u- and v- component winds. Our preference is to calculate the statistics with respect to wind speed and wind direction as opposed to component related stats. My observations were originally in little_r format and I used ascii2nc to preprocess for point_stat. From my little run script (metstats.csh) I used the command (file is in my first submission above with added .txt so it would be accepted). My model output is from WRF and is a netCDF file. The WRF output is straight out of the model. When I run point_stat I use the command So it looks like at or by the point_stat level the wind needs to in the same format for the model and the obs and the question will be...can that be done somewhere with the MET software or will I need to do an intermediate step? Thanks for your help, |
Beta Was this translation helpful? Give feedback.
-
Hi Glenn: I'm following up on this question. Will MET's regridding work on your staggered grid? Are there other things I can help with in the conversion from u/v to speed? Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hi Tina, I have been working on multiple things at the same time so when this wasn't "low hanging fruit" I completed some other tasks. Looking back at this again it looks like I may need to run a program like WRF_INTERP or p_interp to convert the data from WRF's native Arakawa C-GRID to an unstaggered A-Grid which will get my u- and v-component winds on the same point. It will also help with upper level verification since that can be used to convert data from the Eta vertical coordinate to pressure or height coordinates (p_interp only converts to pressure). I just found these codes so I don't know if I can use it to read in netCDF and output as GRIB or if I need to try to find a conversion for this before or after running these codes. I also discovered the following ticket from 2017 (see below) that talks about using p_interp before running WRF but in this response it suggests to use something called UPP that is no longer supported but still exists at DTC. This response says pinterp doesn't destagger grids but at least in the current documentation it looks like it does. Phew! So...it seems that my #1 goal is to find theWRF post-processor that best dovetails with the needs of MET. I am hoping to figure this out without compiling too many different post-processors. p_interp looks promising, but I am not sure if this will leave me with u- and v- and I will still be stuck without the wind speed and wind direction and need to add that in as well. I will continue to look if there is something more current on how best to do this. Thanks, Complete Ticket HistorySubject: Point Stat help Matthew, I see that you have some questions about running the Point-Stat tool. Regarding post-processing, I'd suggest switching from the pinterp But as for your specific error from Point-Stat, I suspect that'll be I often like plotting the data first: Hopefully that'll create a PostScript plot of your data. Thanks, On Tue, Feb 7, 2017 at 7:27 PM, dawsonmattg at gmail.com via RT <
in
tool. I
converting them
http://rda.ucar.edu/datasets/ds337.0/index.html#forms/337_subset.php?_da=y
P_Interp. I
|
Beta Was this translation helpful? Give feedback.
-
Hi Glenn: Were you able to get p_interp or another program working? Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hi Glenn: We would like to mark this as answered but wanted to be sure that you were able to get this working? Do you need additional information? Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hi @gkhboiler, I have marked this discussion as answered and locked it to prevent future posts. It sounds like using a tool like p_interp could be used to reformat your data so that it can be read by MET. Please feel free to start a new discussion topic if you continue to have issues reading these data into MET. |
Beta Was this translation helpful? Give feedback.
Hi Tina,
I have been working on multiple things at the same time so when this wasn't "low hanging fruit" I completed some other tasks. Looking back at this again it looks like I may need to run a program like WRF_INTERP or p_interp to convert the data from WRF's native Arakawa C-GRID to an unstaggered A-Grid which will get my u- and v-component winds on the same point. It will also help with upper level verification since that can be used to convert data from the Eta vertical coordinate to pressure or height coordinates (p_interp only converts to pressure). I just found these codes so I don't know if I can use it to read in netCDF and output as GRIB or if I need to try to find a conversio…