...
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 closed polygon 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.
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_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.
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)
...