definition mvl_geocircle(lat : number, lon : number,radius : number, resolution : number)
Plots a circle with a given radius in km onto a non-cylindrical map projection. 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.
definition mvl_geoline(lat1 : number, lon1 : number, lat2 : number, lon2 : number, incrm : number)
Plots a straight line onto a non-cylindrical map projection. 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 first four parameters define the end-points of the line. Parameter incrm
specifies the increment, in degrees, into which the line should be split.