Versions Compared

Key

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

...

Code Block
trDate = trDate & [date(val_date[i]) + hour(val_time[i])]

Having finished the body of the loop the last step in our Macro is to define an Input Visualiser and return it. The code you we need to add is like this:

Code Block
vis = input_visualiser (
    input_x_type        : "date",
    input_date_x_values : trDate,
    input_y_values      : trVal
)   

return [vis] 
Info

By returning the visualiser

...

our Macro

...

behaves as if it were an Input Visualiser icon.

...

With a new Display Window icon design an A4 portrait layout with two views: your Geographical View icon should go top and your Cartesian View icon into the bottom. Now visualise your this icon and populate the views with the data.

...