ValidateOpendriveParameters

@Serializable
data class ValidateOpendriveParameters(    val tolerance: Double = OpendriveEvaluatorParameters.DEFAULT_NUMBER_TOLERANCE,     val planViewGeometryDistanceTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_DISTANCE_TOLERANCE,     val planViewGeometryDistanceWarningTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_DISTANCE_WARNING_TOLERANCE,     val planViewGeometryAngleTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_ANGLE_TOLERANCE,     val planViewGeometryAngleWarningTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_ANGLE_WARNING_TOLERANCE,     val discretizationStepSize: Double = Roadspaces2CitygmlParameters.DEFAULT_DISCRETIZATION_STEP_SIZE,     val writeOpendriveFile: Boolean = true,     val writeCitygml2File: Boolean = true,     val writeCitygml3File: Boolean = true,     val compressionFormat: CompressionFormat = CompressionFormat.NONE)

Constructors

Link copied to clipboard
constructor(    tolerance: Double = OpendriveEvaluatorParameters.DEFAULT_NUMBER_TOLERANCE,     planViewGeometryDistanceTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_DISTANCE_TOLERANCE,     planViewGeometryDistanceWarningTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_DISTANCE_WARNING_TOLERANCE,     planViewGeometryAngleTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_ANGLE_TOLERANCE,     planViewGeometryAngleWarningTolerance: Double = OpendriveEvaluatorParameters.DEFAULT_PLAN_VIEW_GEOMETRY_ANGLE_WARNING_TOLERANCE,     discretizationStepSize: Double = Roadspaces2CitygmlParameters.DEFAULT_DISCRETIZATION_STEP_SIZE,     writeOpendriveFile: Boolean = true,     writeCitygml2File: Boolean = true,     writeCitygml3File: Boolean = true,     compressionFormat: CompressionFormat = CompressionFormat.NONE)

Properties