Since Wave version 1.6.2 (commit 4d4712e) nearly all time series in WEL-files are interpreted as block right (except title includes "_VOL"):
|
'Series in a WEL file are always interpreted as BlockRight, with the exception of volume |
|
If ts.Title.EndsWith("_VOL") Then |
|
ts.Interpretation = BlueM.Wave.TimeSeries.InterpretationEnum.Instantaneous |
|
Else |
|
ts.Interpretation = BlueM.Wave.TimeSeries.InterpretationEnum.BlockRight |
|
End If |
Why is there a differation between volume curves (from BlueM.Sim) and everything else?
Could it be an enhencement to catch up multiple curve types from BlueM.Sim (and maybe other simulation models) and map it to the diffrent interpretation types?
Such as:
| curve type |
unit |
appendices (BlueM.Sim) |
interpretation |
| (presipitation) heights |
mm |
_NIE, _NEF, _ETP, _IZP, _TRA, _EVA, _ETA, _SCH |
blockright |
| temperature |
°C |
_TEM |
instantaneous |
| soil moisture |
mm/m |
_BOF |
instantaneous |
| discharge |
m3/s |
_QOB, _QBA, _QIN, _1AB, _1ZU |
instantaneous |
| water level |
m |
_WSP |
instantaneous |
| velocity |
m/s |
_ v |
instantaneous |
| volume |
m3 |
_VOL |
instantaneous |
| everything else |
- |
|
undefined |
(Maybe uncomplete)
Since Wave version 1.6.2 (commit 4d4712e) nearly all time series in WEL-files are interpreted as block right (except title includes "_VOL"):
BlueM.Wave/source/FileFormats/WEL.vb
Lines 207 to 212 in 037010d
Why is there a differation between volume curves (from BlueM.Sim) and everything else?
Could it be an enhencement to catch up multiple curve types from BlueM.Sim (and maybe other simulation models) and map it to the diffrent interpretation types?
Such as:
(Maybe uncomplete)