Versions Compared

Key

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

...

Code Block
languagepy
#Read waypoint times from table
#These are seconds elapsed since the middle of the release interval
tt=values(tbl,"time")

#Build the list of date strings to be plotted 
ttLst=nil
for i=1 to count(tt) do
    d=releaseMidDate + second(tt[i])
    ttLst = ttLst & [ "  " & string(d,"dd") & "/" & string(d,"HH")]
end for    

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

#line#text attributes
sym_date=msymb(symbol_type: "text",
         symbol_text_list: ttLst,
         symbol_text_font_size: 0.3,
         symbol_text_font_colour: "navy"
        ) 

...