MET #2046
-
HELLO AGAIN, ITS MY FIRST TIME USING MET V10.1.1 . I WANT TO DO AN EVALUATION WRF VS OBS (t2m, wind,mslp, prec). CAN SOMEONE PLEASE HELP ME. I THINK I MAYBE MADE THE CONGI_FILES FOR T2M AND MSLP , BUT WHEN I TRY TO RUN met : and the confi_file is the following: file_name = []; regrid = { time_interp_method = DW_MEAN; climo_stdev = climo_mean; interp = { type = [ |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
Hi @Banias1305. Thank you for your question. Please take a look at the documentation for message_type_group_map here and try setting message_type_group_map in the following way:
modifying the "val" settings from there. The usage of "SURFACE" is required, hence the error you are receiving. The land and water entries are used when land_mask.flag = true. Please let us know how it goes. |
Beta Was this translation helpful? Give feedback.
-
Hi, Sorry, I haven't sent further information on this, but I'm trying to run the point_stat command for each month for each Var and it's taking me time. -I am sending you the script I created to run the point_stat command for each month:#Define the range of time stepsfor i in $(seq -f "%03g" 6 3 96)do # Create a directory for each time step mkdir -p POINT_STAT/12/$i
# Loop through each day of January for d in $(seq -f "%02g" 1 31) do # Skip days that don't exist in January if [ $d -gt 31 ] then continue fi
# Run the point_stat command and redirect output to the corresponding directory point_stat /home/st13/WRF_M/12/${d}/WRFPRS_d02.$i /home/st13/MSLP/prmsl1.nc /home/st13/FILE_CONG/confi -outdir POINT_STAT/12/$i # in the confi_file i choose CNT & MPR as output donedone- I then run the following script with the same logic for stat_analysis by FCST_VAR,OBS_SID to get my final stats: [I get for each FCST_LEAD for each MONTH]
for m in $(seq -f "%02g" 1 12); do for i in $(seq -f "%03g" 6 96); do # Create a directory for each time step mkdir -p STAT/$m/$i # Run stat_analysis on all mpr files for the current time step f="/home/st13/MSLP/POINT_STAT/$m/$i/*_mpr.txt" #f="/home/st13/MSLP/POINT_STAT/01/006/*_mpr.txt" (EXAMPLE) stat_analysis -lookin $f -job aggregate_stat -line_type MPR -out_line_type CNT -by FCST,OBS -out STAT/$m/$i/out.txt donedone I would like your opinion on the above scripts and especially on stat_analysis .
On Tuesday, March 7, 2023 at 05:57:11 PM GMT+2, jprestop ***@***.***> wrote:
Hi @Banias1305. I just wanted to follow up on this Discussion and see if you were able to resolve the problem you were experiencing? Do you have any remaining questions?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
In the above scripts I choose to run every three hours and just in the confi_stat default file I only declare the variable I want (e.g. TMP/Z2) and don't change anything else. I do not configure the files via pcpcombine tool. Is this step considered correct?Is there a way to declare in the confi_file (point_stat) that my observations are three-hourly? Also, from running the point stat command I get 3 kinds of output cnt.txt/mpr.txt/.stat . From these I choose to use mpr.txt in stat_analysis and then output cnt stats.
I think I will need the pcpcombine tool only in case of rainfall, right? Reformatting the FCST data to 6-hourly as my OBSERVATIONS As you can see my questions are purely about the operation of MET and its corresponding tools, because as I've told you it's the first time I'm using it for my thesis. I am trying on my own to understand how each tool runs and results each of them gives me.
Στάλθηκε από το Ταχυδρομείο Yahoo σε Android
Στις Τρί, 7 Μαρ, 2023 στις 21:24, ο ***@***.***> έγραψε:
HI @Banias1305.
I would like your opinion on the above scripts and especially on stat_analysis.
Could you please provide more information about what information you'd like us to provide you with, with regard to your script?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
@Banias1305, there are several options for how you might call the MET tools to achieve the type of analysis you want.
It sounds like right now, you're running Point-Stat to generate matched pair output (MPR line type). And then you're reading those MPR lines into Stat-Analysis and computing continuous statistics. That approach is useful if you want to compute stats separately for each station, but it looks like you are NOT doing that in your Stat-Analysis job.
Let me answer a couple of the questions you raised: