...
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
cont_list=[0.00001,0.0001,0.0005,0.001,0.002,0.005,0.01,0.05]
#Define contour shading
conc_shade = mcont(
legend : "on",
contour : "off",
contour_level_selection_type : "level_list",
contour_level_list : cont_list,
contour_label : "off",
contour_shade : "on",
contour_shade_method : "area_fill",
contour_shade_max_level_colour : "red",
contour_shade_min_level_colour : "RGB(0.14,0.37,0.86)",
contour_shade_colour_direction : "clockwise",
contour_method : "linear",
grib_scaling_of_derived_fields : "off"
)
|
Please note that by multiplying our fieldset by 1000 it became a derived fieldset. Since we do not want the automatic contour scaling to happen we need to set the contouring parameter grib_scaling_of_derived_fields to "off".
Next, we build the title with flexpart_build_title(). Please note that we need to explicitly specify the plotting units!
...