...
Plots a circle with a given radius in km onto a non-cylindrical map projectionany map projections. Internally, the circle is split into a number of segments and the returned result is an Input Visualiser object which can be passed to the plot()
command along with an optional Graph Plotting object.
The first three parameters specify the centre and the radius (in km) of the circle. Parameter resolution
defines the number of line segments to use to make up the circle.
...
Plots a straight line onto a non-cylindrical map projectionany map projections. Internally, the line is split into a number of segments and the returned result is an Input Visualiser object which can be passed to the plot()
command along with an optional Graph Plotting object.
...
The usage of this function is demonstrated via the Geoline on Map Example from the Gallery.
Anchor mvl_geopolyline mvl_geopolyline
definition mvl_geopolyline(lat: vector, lon: vector, incr: number)
definition mvl_geopolyline(lat: list, lon: list, incr: number)
Plots a polyline sampled on the cylindrical projection onto any map projections. Internally, each line section is split into a number of segments and the returned result is an Input Visualiser object which can be passed to the plot()
command along with an optional Graph Plotting object.
Parameter incrm
specifies the increment, in degrees, into which the line sections should be split.
The usage of this function is demonstrated via the Geopolyline on Map Example from the Gallery.
This function was introduced in version 5.10.0.
Anchor plot plot
plot(...)
Generates a plot using the specified output device.
...
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 icons that can be directly used in a plot()
command. See the Parcel method on Skew-T Example from the Gallery for its usage.
Anchor xy_build_curve xy_build_curve
definition xs_build_curve(xs_d: cross_section_data, fs: fieldset, colour: string, style:string, thickness: number)
Convenience function to build a curve to be plotted in a Cross Section View with the given colour, style and thickness. The curve values are extracted from the first field in fieldset fs
and they must be in the same units as the vertical axis of the cross section. The cross section definition itself is taken from the xs_d
Cross Section Data object (xs_d)
. The function returns a list containing an Input Visualiser and a Graph Plotting icon, which can be directly used in a plot()
command.
The usage of this function is demonstrated via the Cross Section in Pressure with Orography and Boundary Layer Height Example example from the Gallery.
This property was introduced in version 5.10.0.
Anchor xs_build_orog xs_build_orog
definition xs_build_orog(xs_d: cross_section_data, orog_fs: fieldset, bottom_level: number, colour: string)
Convenience function to build an orography area object to be plotted in a Cross Section View with the given colour. The orography values are extracted from the first field in fieldset orog_fs
and they must be in the same units as the vertical axis of the cross section. The cross section definition itself is taken from the xs_d
Cross Section Data object (xs_d)
. The function returns a list containing an Input Visualiser and a Graph Plotting icon, which can be directly used in a plot()
command.
The usage of this function is demonstrated via the Cross Section in Height for Model Level Data with Orography example from the Gallery.
This function was introduced in version 5.10.0.
Anchor xy_area xy_area
definition xy_area(x:vector, y: vector, colour: string)
Convenience function to build an area (i.e. a polygon) to be plotted in a Cartesian View with the given colour. The function returns a list containing an Input Visualiser and a Graph Plotting icon, which can be directly used in a plot()
command.
The usage of this function is demonstrated via the ENS Tephigram Example from the Gallery.
This function was introduced in version 5.10.0.
Anchor xy_curve xy_curve
definition xy_curve(x:vector, y: vector, colour: string, style: string, thickness: number)
...