...
Code Block | ||
---|---|---|
| ||
dIn="result_fwd/" inFile=dIn & "conc_s001.grib" #Define parameter and step par="mdc" step=48 #Get fields for all levels for a given step g=flexpart_filter(source: inFile, param: par, levType: "hl", step: step) #Scale into ng/m3 units g=g*1E12 |
ThenNext, we define the contouring:
...