Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/DikeProfile.cs =================================================================== diff -u -r875712a38626d27da8b94038d38aec9783e8d95e -r41960c7d3d923a60575133a585d4cecfb1a251b5 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/DikeProfile.cs (.../DikeProfile.cs) (revision 875712a38626d27da8b94038d38aec9783e8d95e) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/DikeProfile.cs (.../DikeProfile.cs) (revision 41960c7d3d923a60575133a585d4cecfb1a251b5) @@ -36,7 +36,7 @@ private readonly List foreshoreGeometry; private readonly List dikeGeometry; private RoundedDouble orientation; - private RoundedDouble crestLevel; + private RoundedDouble dikeHeight; /// /// Creates a new instance of the class. @@ -50,7 +50,7 @@ } orientation = new RoundedDouble(2); - crestLevel = new RoundedDouble(2); + dikeHeight = new RoundedDouble(2); Name = Resources.DikeProfile_DefaultName; Memo = ""; @@ -142,15 +142,15 @@ /// /// Gets or sets the height of the dike [m+NAP]. /// - public RoundedDouble CrestLevel + public RoundedDouble DikeHeight { get { - return crestLevel; + return dikeHeight; } set { - crestLevel = value.ToPrecision(crestLevel.NumberOfDecimalPlaces); + dikeHeight = value.ToPrecision(dikeHeight.NumberOfDecimalPlaces); } } }