...
Use the functions provided, e.g.
Code Block language powershell lats = latitudes(gpt) vals = values(gpt) rh = values(gpt, 'rh') # assuming NCOLS format with a value column of name 'rh'
Use column indexing, e.g.
Code Block language powershell lats = gpt['latitude'] vals = gpt['value'] rh = gpt['rh'] # assuming NCOLS format with a value column of name 'rh'
To assign values to a column, again there are 2 methods, but they have different behaviours:
...