Anchor | ||||
---|---|---|---|---|
|
definition mvl_flexpart_title(...)
Generates a Text Plotting object to provide title for plotting FLEXPART output GRIB fields. This function uses this set of named keyword arguments:
source
...
:
The FLEXPART output GRIB file.data
...
- : The FLEXPART output GRIB as a fieldset. It takes precedence over
source
. fontsize
...
- : Is the character height in cm. The default is 0.3 cm.
units
...
- : The units string to display. If it is set to "header" the units are taken from the GRIB header. The default is an empty string
...
Example:
# if g is a fieldset containing FLEXPART output
...
dw = plot_superpage(pages: page_list)
definition thermo_parcel_area(parcel: definition)
definition thermo_parcel_area(parcel: definition, pos_colour: string, neg_colour: string)
Returns a set of coloured areas from a thermo parcel path object (the result of the thermo_parcel_path()
function). The function returns a list of Input Visualiser and Graph Plotting icon that can be directly used in a plot()
command. See the Parcel method on Skew-T Example from the Gallery for its usage.
definition xy_curve(x:vector, y: vector, colour: string, style: string, thickness: number)
definition xy_curve(x: list, y: list, colour: string, style: string, thickness: number)
Convenience function to build a curve to be plotted in a Cartesian View with the given colour, style and thickness. The function returns a list of Input Visualiser and Graph Plotting icon that can be directly used in a plot()
command.