MET Online Tutorial for METv1.1

MODE Tool: Run

Next, run MODE on the command line using the following command:

    bin/mode \
    tutorial/out/pcp_combine/sample_fcst_12L_2005080712V_12A.nc \
    tutorial/out/pcp_combine/sample_obs_12L_2005080712V_12A.nc \
    tutorial/config/WrfModeConfig_tutorial \
    -outdir tutorial/out/mode \
    -v 2

MODE is now performing the verification task we requested in the configuration file. It should take a minute or two to run. MODE's runtime is greatly influenced by the number of gridpoints in the domain, the convolution radius chosen, and the number of objects resolved. The more dense the domain, larger the convolution radius, and greater the number of objects, the more computations required.

When MODE is finished, it will have created 4 files: 2 ASCII statistics files, a NetCDF object file, and a PostScript summary plot. Open up the PostScript summary plot using the PostScript viewer of your choice, gv, or Ghostview, for example:

    gv \
    tutorial/out/mode/mode_APCP_12_SFC_vs_APCP_12_SFC_120000L_20050807_120000V_120000A.ps&

This PostScript summary plot contains 4 pages. The first page summarizes the application of MODE to this dataset. The second and third pages contain enlargements of the forecast and observation raw and object fields. And the fourth page shows the forecast and observation object fields overlaid on eachother. The PostScript summary plot will contain additional pages when additional merging methods are selected. Looking at the first page, note the following:

  • The valid data in the forecast field extends much further than in the observation field leading to objects in the forecast field with no match (royal blue = unmatched) in the observation field.
  • The forecast field contains 6 objects while the observation field contains only 2.
  • Only one pair of objects (colored red) is matched across these fields, forecast number 3 and observation number 1.

Now, let's modify the configuration file and rerun this case. Again, open up the tutorial/config/WrfModeConfig_tutorial file and edit it as follows:

  • Set mask_missing_flag = 3; to mask out the bad data in both fields with eachother.
  • Set fcst_conv_radius = 2; and obs_conv_radius = 2;.

Now, rerun the MODE command listed above, and when its finished, reload the PostScript plot. Reducing the convolution radius (amount of smoothing) while keeping the convolution threshold fixed should result in a greater number of smaller objects. On the first page of the PostScript plot, note the following:

  • The valid data in the raw forecast and observation fields now match up nicely.
  • The forecast field contains 9 objects and the observation field contains 11. These are called simple objects.
  • Three sets of objects are now matched across the fields. They are colored light blue, green, and red.
  • Objects that are colored the same color within the same field are called merged. Objects that have the same color across fields are called matched.
  • Each set of colored objects is referred to as a composite object. A composite objects consists of one or more simple objects. For example, in the observation field, simple object numbers 7 and 9 (both colored green) are merged together and are members of the same composite object. They match forecast object number 5 which is its own composite object.

AFTER completing the next page on MODE Output, users are welcome to return to this page, play around with settings in the configuration file, and rerun this case several times. Listed below are some configuration parameters you may want to try modifying:

  • total_interest_threshold
  • fcst_conv_radius and obs_conv_radius
  • fcst_conv_threshold and obs_conv_threshold
  • fcst_area_threshold and obs_area_threshold
  • fcst_inten_threshold and obs_inten_threshold
  • fcst_merge_threshold and obs_merge_threshold with fcst_merge_flag and obs_merge_flag both set to 1