@@ -138,7 +138,7 @@ private ParseFileResult AppendResults(LocationInfo locationInfo)
138
138
139
139
foreach ( var station in DataFile . Stations )
140
140
{
141
- manualGauging . Verticals . Add ( CreateVertical ( station , startStation , endStation ) ) ;
141
+ manualGauging . Verticals . Add ( CreateVertical ( manualGauging . Verticals . Count , station , startStation , endStation ) ) ;
142
142
}
143
143
144
144
AdjustUnknownTotalDischargePortion ( manualGauging ) ;
@@ -306,7 +306,7 @@ private DischargeMethodType CreateDischargeMethodType()
306
306
throw new ArgumentException ( $ "DischargeEquation='{ dischargeEquation } ' is not supported") ;
307
307
}
308
308
309
- private Vertical CreateVertical ( Station station , Station startStation , Station endStation )
309
+ private Vertical CreateVertical ( int sequenceNumber , Station station , Station startStation , Station endStation )
310
310
{
311
311
var verticalType = station == startStation && ValidBankTypes . Contains ( station . StationType )
312
312
? VerticalType . StartEdgeNoWaterBefore
@@ -316,6 +316,7 @@ private Vertical CreateVertical(Station station, Station startStation, Station e
316
316
317
317
var vertical = new Vertical
318
318
{
319
+ SequenceNumber = sequenceNumber ,
319
320
TaglinePosition = UnitConverter . ConvertDistance ( station . Location ) ,
320
321
Comments = station . Comment ,
321
322
MeasurementTime = station . CreationTime ,
0 commit comments