// Copyright (C) Stichting Deltares 2019. All rights reserved. // // This file is part of the application DAM - Clients Library. // // DAM - UI is free software: you can redistribute it and/or modify // it under the terms of the GNU 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 General Public License for more details. // // You should have received a copy of the GNU 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.Dam.Data.Importers { /// /// Defines column name definitions used for importing csv data /// /// /// Some of the definitions are used (referenced) in the LocationPropertyImporter. /// Changing the definitions will affect the location importers using shapefiles as well!! /// public static class CsvColumnNames { /// /// location_id /// public const string LocationColumnName = "location_id"; /// /// location_scenario_id /// public const string LocationScenarioColumnName = "location_scenario_id"; /// /// dikering_id /// public const string DikeRingColumnName = "dikering_id"; /// /// surfaceline_id /// public const string SurfaceLineColumnName = "surfaceline_id"; /// /// geo_x /// public const string XValueColumnName = "geo_x"; /// /// geo_y /// public const string YValueColumnName = "geo_y"; /// /// segment_id /// public const string SegmentColumnName = "segment_id"; /// /// polderlevel /// public const string PolderLevelColumnName = "polderlevel"; /// /// head_pl2 /// public const string HeadPl2ColumnName = "head_pl2"; /// /// head_pl3 /// public const string HeadPl3ColumnName = "head_pl3"; /// /// head_pl4 /// public const string HeadPl4ColumnName = "head_pl4"; /// /// grass_quality /// public const string GrassQualityColumnName = "grass_quality"; /// /// direction /// public const string DirectionColumnName = "direction"; /// /// x_soilgeometry2D_origin /// public const string XSoilGeometry2DOriginColumnName = "x_soilgeometry2D_origin"; /// /// ophoogmateriaaldijk /// public const string DikeEmbankmentMaterialColumnName = "ophoogmateriaaldijk"; /// /// ophoogmateriaalberm /// public const string ShoulderEmbankmentMaterialColumnName = "ophoogmateriaalberm"; /// /// dempingsfactor_pl3 /// public const string DampingFactorPl3ColumnName = "dempingsfactor_pl3"; /// /// dempingsfactor_pl4 /// public const string DampingFactorPl4ColumnName = "dempingsfactor_pl4"; /// /// use_original_plline_assignments /// public const string UseOriginalPlLineAssignmentsColumnName = "use_original_plline_assignments"; /// /// Pl1_id /// public const string Pl1ColumnName = "Pl1_id"; /// /// PenetrationLength /// public const string PenetrationLengthColumnName = "PenetrationLength"; /// /// TrafficLoad /// public const string TrafficLoadColumnName = "TrafficLoad"; /// /// TL_DegreeOfConsolidation /// public const string TL_DegreeOfConsolidationColumnName = "TL_DegreeOfConsolidation"; /// /// PLLineCreationMethod /// public const string PlLineCreationMethodColumnName = "PLLineCreationMethod"; /// /// PLLineOffsetBelowDikeTopAtRiver /// public const string PlLineOffsetBelowDikeTopAtRiverColumnName = "PLLineOffsetBelowDikeTopAtRiver"; /// /// PLLineOffsetBelowDikeTopAtPolder /// public const string PlLineOffsetBelowDikeTopAtPolderColumnName = "PLLineOffsetBelowDikeTopAtPolder"; /// /// PLLineOffsetBelowShoulderBaseInside /// public const string PlLineOffsetBelowShoulderBaseInsideColumnName = "PLLineOffsetBelowShoulderBaseInside"; /// /// PLLineOffsetBelowDikeToeAtPolder /// public const string PlLineOffsetBelowDikeToeAtPolderColumnName = "PLLineOffsetBelowDikeToeAtPolder"; /// /// The pl line offset below dike crest middle /// public const string PlLineOffsetBelowDikeCrestMiddleColumnName = "PLLineOffsetBelowDikeCrestMiddle"; /// /// The pl line offset factor below shoulder crest /// public const string PlLineOffsetFactorBelowShoulderCrestColumnName = "PLLineOffsetFactorBelowShoulderCrest"; /// /// Use the pl line offset below dike crest middle /// public const string UsePlLineOffsetBelowDikeCrestMiddleColumnName = "UsePLLineOffsetBelowDikeCrestMiddle"; /// /// Use the pl line offset factor below shoulder crest /// public const string UsePlLineOffsetFactorBelowShoulderCrestColumnName = "UsePLLineOffsetFactorBelowShoulderCrest"; /// /// The intrusion vertical water pressure /// public const string IntrusionVerticalWaterPressureColumnName = "IntrusionVerticalWaterPressure"; /// /// StabilityShoulderGrowSlope /// public const string StabilityShoulderGrowSlopeColumnName = "StabilityShoulderGrowSlope"; /// /// StabilityShoulderGrowDeltaX /// public const string StabilityShoulderGrowDeltaXColumnName = "StabilityShoulderGrowDeltaX"; /// /// StabilitySlopeAdaptionDeltaX /// public const string StabilitySlopeAdaptionDeltaXColumnName = "StabilitySlopeAdaptionDeltaX"; /// /// minimal_circle_depth /// public const string MinimalCircleDepthColumnName = "minimal_circle_depth"; /// /// level_reduction_inside /// public const string LevelReductionInsideColumnName = "level_reduction_inside"; /// /// level_reduction_outside /// public const string LevelReductionOutsideColumnName = "level_reduction_outside"; /// /// layer_height_deviation /// public const string LayerHeightDeviationColumnName = "layer_height_deviation"; /// /// layer_height_distribution /// public const string LayerHeightDistributionColumnName = "layer_height_distribution"; /// /// distance_to_entry_point /// public const string DistanceToEntryPointColumnName = "distance_to_entry_point"; /// /// Stability Design Method /// public const string StabilityDesignMethodColumnName = "StabilityDesignMethod"; /// /// Start value (cotangent) for slope adaption by angle /// public const string SlopeAdaptionStartCotangentColumnName = "SlopeAdaptionStartCotangent"; /// /// End value (cotangent) for slope adaption by angle /// public const string SlopeAdaptionEndCotangentColumnName = "SlopeAdaptionEndCotangent"; /// /// Step size (cotangent) for slope adaption by angle /// public const string SlopeAdaptionStepCotangentColumnName = "SlopeAdaptionStepCotangent"; /// /// Slope damping piezometric height polderside /// public const string SlopeDampingPiezometricHeightPolderSideColumnName = "SlopeDampingPiezometricHeightPolderSide"; /// /// safety_factor_stability_inner_slope /// public const string RequiredSafetyFactorStabilityInnerSlopeColumnName = ModelFactorCsvIdentifiers.SafetyFactorStabilityInnerslope; /// /// safety_factor_stability_outer_slope /// public const string RequiredSafetyFactorStabilityOuterSlopeColumnName = ModelFactorCsvIdentifiers.SafetyFactorStabilityOuterslope; /// /// safety_factor_piping /// public const string RequiredSafetyFactorPipingColumnName = ModelFactorCsvIdentifiers.SafetyFactorPiping; /// /// probability_of_failure_stability_innerslope /// public const string ProbabilityOfFailureStabilityInnerslopeColumnName = ModelFactorCsvIdentifiers.ProbabilityOfFailureStabilityInnerslope; /// /// probability_of_failure_stability_outerslope /// public const string ProbabilityOfFailureStabilityOuterslopeColumnName = ModelFactorCsvIdentifiers.ProbabilityOfFailureStabilityOuterslope; /// /// probability_of_failure_piping /// public const string ProbabilityOfFailurePipingColumnName = ModelFactorCsvIdentifiers.ProbabilityOfFailurePiping; /// /// uplift_criterion_piping /// public const string UpliftCriterionPipingColumnName = ModelFactorCsvIdentifiers.UpliftCriterionPiping; /// /// uplift_criterion_stability /// public const string UpliftCriterionStabilityColumnName = ModelFactorCsvIdentifiers.UpliftCriterionStability; /// /// Zone type /// public const string ZoneTypeColumnName = "ZoneType"; /// /// ForbiddenZoneFactor /// public const string ForbiddenZoneFactorColumnName = "ForbiddenZoneFactor"; /// /// ZoneAreaRestSlopeCrestWidth /// public const string ZoneAreaRestSlopeCrestWidthColumnName = "ZoneAreaRestSlopeCrestWidth"; /// /// NewDikeTopWidth /// public const string NewDikeTopWidthColumnName = "NewDikeTopWidth"; /// /// UseNewDikeTopWidth /// public const string UseNewDikeTopWidthColumnName = "UseNewDikeTopWidth"; /// /// NewDikeSlopeInside /// public const string NewDikeSlopeInsideColumnName = "NewDikeSlopeInside"; /// /// UseNewDikeSlopeInside /// public const string UseNewDikeSlopeInsideColumnName = "UseNewDikeSlopeInside"; /// /// NewDikeSlopeOutside /// public const string NewDikeSlopeOutsideColumnName = "NewDikeSlopeOutside"; /// /// UseNewDikeSlopeOutside /// public const string UseNewDikeSlopeOutsideColumnName = "UseNewDikeSlopeOutside"; /// /// NewShoulderTopSlope /// public const string NewShoulderTopSlopeColumnName = "NewShoulderTopSlope"; /// /// UseNewShoulderTopSlope /// public const string UseNewShoulderTopSlopeColumnName = "UseNewShoulderTopSlope"; /// /// NewShoulderBaseSlope /// public const string NewShoulderBaseSlopeColumnName = "NewShoulderBaseSlope"; /// /// UseNewShoulderBaseSlope /// public const string UseNewShoulderBaseSlopeColumnName = "UseNewShoulderBaseSlope"; /// /// NewMaxHeightShoulderAsFraction /// public const string NewMaxHeightShoulderAsFractionColumnName = "NewMaxHeightShoulderAsFraction"; /// /// UseNewMaxHeightShoulderAsFraction /// public const string UseNewMaxHeightShoulderAsFractionColumnName = "UseNewMaxHeightShoulderAsFraction"; /// /// NewMinDistanceDikeToeStartDitch /// public const string NewMinDistanceDikeToeStartDitchColumnName = "NewMinDistanceDikeToeStartDitch"; /// /// UseNewMinDistanceDikeToeStartDitch /// public const string UseNewMinDistanceDikeToeStartDitchColumnName = "UseNewMinDistanceDikeToeStartDitch"; /// /// UseNewDitchDefinition /// public const string UseNewDitchDefinitionColumnName = "UseNewDitchDefinition"; /// /// NewWidthDitchBottom /// public const string NewWidthDitchBottomColumnName = "NewWidthDitchBottom"; /// /// newSlopeAngleDitch /// public const string NewSlopeAngleDitchColumnName = "newSlopeAngleDitch"; /// /// NewDepthDitch /// public const string NewDepthDitchColumnName = "NewDepthDitch"; /// /// DikeTableHeight /// public const string DikeTableHeightColumnName = "dike_table_height"; /// /// water_height /// public const string WaterHeightColumnName = "water_height"; /// /// water_height_low /// public const string WaterHeightLowColumnName = "water_height_low"; /// /// water_height_decimerings_hoogte /// public const string WaterHeightDecimeringsHoogteColumnName = "water_height_decimerings_hoogte"; /// /// max_waterheight /// public const string MaxWaterHeightColumnName = "max_waterheight"; } }