// Copyright (C) Stichting Deltares 2020. All rights reserved.
//
// This file is part of the LayerOnSlopeTool
//
// The LayerOnSlopeTool is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see .
//
// All names, logos, and references to "Deltares" are registered trademarks of
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
namespace Deltares.LayerOnSlopeTool.Data.CsvImporters
{
///
/// Holds the Identifiers for the characteristic points as defined in csv files
///
public class CharacteristicPointCsvIdentifiers
{
// The following 2 fields point to the same data
// location_id is the preferred columnname
// Profielnaam is used for backward compatiblity
public const string SurfaceLineId = "Profielnaam"; public const string LocationId = "LocationId";
public const string SurfaceLevelInsideX = "X_Maaiveld binnenwaarts";
public const string SurfaceLevelInsideY = "Y_Maaiveld binnenwaarts";
public const string SurfaceLevelInsideZ = "Z_Maaiveld binnenwaarts";
public const string DitchPolderSideX = "X_Insteek sloot polderzijde";
public const string DitchPolderSideY = "Y_Insteek sloot polderzijde";
public const string DitchPolderSideZ = "Z_Insteek sloot polderzijde";
public const string BottomDitchPolderSideX = "X_Slootbodem polderzijde";
public const string BottomDitchPolderSideY = "Y_Slootbodem polderzijde";
public const string BottomDitchPolderSideZ = "Z_Slootbodem polderzijde";
public const string BottomDitchDikeSideX = "X_Slootbodem dijkzijde";
public const string BottomDitchDikeSideY = "Y_Slootbodem dijkzijde";
public const string BottomDitchDikeSideZ = "Z_Slootbodem dijkzijde";
public const string DitchDikeSideX = "X_Insteek sloot dijkzijde";
public const string DitchDikeSideY = "Y_Insteek sloot dijkzijde";
public const string DitchDikeSideZ = "Z_Insteek sloot dijkzijde";
public const string DikeToeAtPolderX = "X_Teen dijk binnenwaarts";
public const string DikeToeAtPolderY = "Y_Teen dijk binnenwaarts";
public const string DikeToeAtPolderZ = "Z_Teen dijk binnenwaarts";
public const string TopShoulderInsideX = "X_Kruin binnenberm";
public const string TopShoulderInsideY = "Y_Kruin binnenberm";
public const string TopShoulderInsideZ = "Z_Kruin binnenberm";
public const string InsteekShoulderInsideX = "X_Insteek binnenberm";
public const string InsteekShoulderInsideY = "Y_Insteek binnenberm";
public const string InsteekShoulderInsideZ = "Z_Insteek binnenberm";
public const string DikeTopAtPolderX = "X_Kruin binnentalud";
public const string DikeTopAtPolderY = "Y_Kruin binnentalud";
public const string DikeTopAtPolderZ = "Z_Kruin binnentalud";
public const string TrafficLoadInsideX = "X_Verkeersbelasting kant binnenwaarts";
public const string TrafficLoadInsideY = "Y_Verkeersbelasting kant binnenwaarts";
public const string TrafficLoadInsideZ = "Z_Verkeersbelasting kant binnenwaarts";
public const string TrafficLoadOutsideX = "X_Verkeersbelasting kant buitenwaarts";
public const string TrafficLoadOutsideY = "Y_Verkeersbelasting kant buitenwaarts";
public const string TrafficLoadOutsideZ = "Z_Verkeersbelasting kant buitenwaarts";
public const string DikeTopAtRiverX = "X_Kruin buitentalud";
public const string DikeTopAtRiverY = "Y_Kruin buitentalud";
public const string DikeTopAtRiverZ = "Z_Kruin buitentalud";
public const string InsteekShoulderOutsideX = "X_Insteek buitenberm";
public const string InsteekShoulderOutsideY = "Y_Insteek buitenberm";
public const string InsteekShoulderOutsideZ = "Z_Insteek buitenberm";
public const string TopShoulderOutsideX = "X_Kruin buitenberm";
public const string TopShoulderOutsideY = "Y_Kruin buitenberm";
public const string TopShoulderOutsideZ = "Z_Kruin buitenberm";
public const string DikeToeAtRiverX = "X_Teen dijk buitenwaarts";
public const string DikeToeAtRiverY = "Y_Teen dijk buitenwaarts";
public const string DikeToeAtRiverZ = "Z_Teen dijk buitenwaarts";
public const string SurfaceLevelOutsideX = "X_Maaiveld buitenwaarts";
public const string SurfaceLevelOutsideY = "Y_Maaiveld buitenwaarts";
public const string SurfaceLevelOutsideZ = "Z_Maaiveld buitenwaarts";
public const string InsertRiverChannelX = "X_Insteek geul";
public const string InsertRiverChannelY = "Y_Insteek geul";
public const string InsertRiverChannelZ = "Z_Insteek geul";
public const string BottomRiverChannelX = "X_Teen geul";
public const string BottomRiverChannelY = "Y_Teen geul";
public const string BottomRiverChannelZ = "Z_Teen geul";
}
}