Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • plot the control forecast into the 51st map (dw[51]). The control forecast is stored in the same file as the perturbed forecast members: fc_ens.grib. Read it in with this code:

    Code Block
    f = read(data: g, type: "cf", step: step)
  • plot the operational forecast into the 52nd map (dw[52]). The operational forecast is stored in fc_oper.grib. Read it in with this code:

    Code Block
    f =read(source: "fc_oper.grib", step: step)

...

NOTE: While setting up these extra plots it is a good idea to temporarily comment out the loop processing the perturbed forecast members.

Add more fields to the spaghetti plot

...

  • use thick green contour line. The operational forecast is stored in spag_oper.grib. Read it in with this code:

    Code Block
    f = read("spag_oper.grib")

...

 

NOTE: While setting up these extra plots it is a good idea to temporarily comment out the loop processing the perturbed forecast members.