Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Parsers/OvertoppingCalculationWaveHeightParser.cs =================================================================== diff -u -r07ff9cdf4b5f0a16b695306518ed9019020983c6 -rf30b8c5f2138a96e620167c61bcf48dfae53e8b9 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Parsers/OvertoppingCalculationWaveHeightParser.cs (.../OvertoppingCalculationWaveHeightParser.cs) (revision 07ff9cdf4b5f0a16b695306518ed9019020983c6) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Parsers/OvertoppingCalculationWaveHeightParser.cs (.../OvertoppingCalculationWaveHeightParser.cs) (revision f30b8c5f2138a96e620167c61bcf48dfae53e8b9) @@ -28,16 +28,16 @@ namespace Ringtoets.HydraRing.Calculation.Parsers { /// - /// Parser for overtopping wave height results. + /// Parser for overtopping results. /// public class OvertoppingCalculationWaveHeightParser : IHydraRingFileParser { private const string sectionIdParameterName = "@sectionId"; - private const string waveHeighColumn = "WaveHeight"; + private const string waveHeightColumn = "WaveHeight"; private const string isOvertoppingDominantColumn = "IsOvertoppingDominant"; private readonly string query = - $"SELECT Value as {waveHeighColumn}," + + $"SELECT Value as {waveHeightColumn}," + $"(case when SubMechanismId is 102 then 1 else 0 end) as {isOvertoppingDominantColumn} FROM " + "(SELECT d.OuterIterationId, TidalPeriod, BetaValue, ClosingSituation, WindDirection, LevelType, SubMechanismId " + "FROM GoverningWind g " + @@ -82,7 +82,7 @@ { try { - double waveHeight = Convert.ToDouble(result[waveHeighColumn]); + double waveHeight = Convert.ToDouble(result[waveHeightColumn]); bool isOvertoppingDominant = Convert.ToBoolean(result[isOvertoppingDominantColumn]); Output = new OvertoppingCalculationWaveHeightOutput(waveHeight,