Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The plotting of the track is the same as in Step1:

Code Block
languagepy
titlePlotting the track
collapsetrue
#Read columns from table
mLat=tolist(values(tbl,"meanLat"))
mLon=tolist(values(tbl,"meanLon"))

#visualiser
iv_curve = input_visualiser(
	   input_plot_type	:	"geo_points",
	   input_longitude_variable	:	mLon,
	   input_latitude_variable	:	mLat	  	  
	)

#line attributes
graph_curve=mgraph(graph_line_colour: "red",
         graph_line_thickness: "3",
         graph_symbol: "on",
         graph_symbol_marker_index: 15,
         graph_symbol_height: 0.5,
         graph_symbol_colour: "white",
         graph_symbol_outline: "on"
        ) 

Then we need to add a new plotting layer for the date labels. Here we use a loop to construct construct  and plot the date labels and define their plotting instructions one by one with Input Visualiser and Symbol Plotting:

...