The preprocess files for WRF output
pyflextrkr/preprocess_wrf_tb_rainrate.py
seem to be able to handle WRF data files with multi time levels as it takes the time level into account. But the output file name defined in line 153
fileout = f'{outdir}/{outbasename}{ftime_t2}.nc'
is a string rather than an iterable type, which may cause overwriting in the writing loop start at line 246.
The preprocess files for WRF output
seem to be able to handle WRF data files with multi time levels as it takes the time level into account. But the output file name defined in line 153
fileout = f'{outdir}/{outbasename}{ftime_t2}.nc'is a string rather than an iterable type, which may cause overwriting in the writing loop start at line 246.