You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

In this step we want to get our measured data (we have in the file "waterLevel_at_GaugingStation.csv") as timeseries. For this we use the function GetTimeSeriesFromCSVFile from the StandardFunctions library. This gives us a timeseries that is a list of [datetime, value].

Get timeseries
measuredTimeSeries = GetTimeSeriesFromCSVFile(rootPath + "\waterLevel_at_GaugingStation.csv")

 

Now that the model has run we also want to get the waterlevel at calculation point "Gauging Station" (the same point as our measurement data) as timeseries. This is done by using the following lines:

Get timeseries
calculationPoint = GetComputationGridLocationByName(flowModel, "Gauging Station")
waterlevelResults = GetTimeSeriesFromWaterFlowModel(flowModel, calculationPoint, "Water level")

 

 

  • No labels