Versions Compared

Key

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

...

If we run this macro (or alternatively right-click execute the FLEXPART Run icon) the resulting CSV file, 'tr_r1r001.csv', will be available (after a minute or so) in folder 'result_tr'. For details about the FLEXPART trajectory outputs click here.

...

Code Block
languagepy
#The input file
dIn="result_tr"
inFile=dIn  & "/tr_r1r001.csv"

#Read table (CSV) data
tbl=read_table(table_filename: inFile,
    table_header_row: "2",
    table_meta_data_rows: "1")

...