Rename Output Workflow input filename
It is impossible to parse the metadata (i.e., the series parameter) used at the current format of naming for the input file used by an output workflow: https://gitlab.lisha.ufsc.br/iot/platform/-/blob/main/bin/smartdata/Backend.php#L2199
Please, reshape the format to include "-" between data to allow for parsing, for instance:
"{$series->unit}-{$series->t0}-{$series->t1}-{$series->x}-{$series->y}-{$series->z}-{$series->r}-{$time}"
which would allow parsing the filename as:
[unit,t0,tf,x,y,z,r,time] = filename.split("-")
Edited by Guilherme Arthur Gerônimo