Versions Compared

Key

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

...

The stamp plot will be generated by plotting each perturbed forecast member into a separate map, so we need to write a loop like this:

Code Block
for numberi=1 to 50 do 

    ...your code will go here ...

end for

...

Code Block
f=read(data: g,
		number: numberi,
		type: "pf",
		step: step
	  )	

...

Code Block
title = mtext(text_line_1 : "PF: " & numberi)

Finish the loop by plotting the field into the right map in our layout:

...