@@ -35,8 +35,8 @@ public struct RunwayEnd: Record {
3535 /// The height of the visual glidepath above the runway threshold (feet AGL).
3636 public let thresholdCrossingHeightFtAGL : UInt ?
3737
38- /// The glidepath angle for a visual approach (hundredths of degrees).
39- public let visualGlidepathHundredthsDeg : Float ?
38+ /// The glidepath angle for a visual approach (degrees).
39+ public let visualGlidepathDeg : Float ?
4040
4141 /// The location and elevation of the displaced threshold, which is the
4242 /// start of the landing portion of the runway.
@@ -144,7 +144,7 @@ public struct RunwayEnd: Record {
144144 markingCondition: Self . MarkingCondition ? ,
145145 threshold: Location ? ,
146146 thresholdCrossingHeightFtAGL: UInt ? ,
147- visualGlidepathHundredthsDeg : Float ? ,
147+ visualGlidepathDeg : Float ? ,
148148 displacedThreshold: Location ? ,
149149 thresholdDisplacementFt: UInt ? ,
150150 touchdownZoneElevationFtMSL: Float ? ,
@@ -181,7 +181,7 @@ public struct RunwayEnd: Record {
181181 self . markingCondition = markingCondition
182182 self . threshold = threshold
183183 self . thresholdCrossingHeightFtAGL = thresholdCrossingHeightFtAGL
184- self . visualGlidepathHundredthsDeg = visualGlidepathHundredthsDeg
184+ self . visualGlidepathDeg = visualGlidepathDeg
185185 self . displacedThreshold = displacedThreshold
186186 self . thresholdDisplacementFt = thresholdDisplacementFt
187187 self . touchdownZoneElevationFtMSL = touchdownZoneElevationFtMSL
@@ -703,7 +703,7 @@ public struct RunwayEnd: Record {
703703 /// Fields that per-field remarks can be associated with.
704704 public enum Field : String , RemarkField {
705705 case id, heading, instrumentLandingSystem, rightTraffic, marking, markingCondition,
706- threshold, thresholdCrossingHeightFtAGL, visualGlidepathHundredthsDeg , displacedThreshold,
706+ threshold, thresholdCrossingHeightFtAGL, visualGlidepathDeg , displacedThreshold,
707707 thresholdDisplacementFt, touchdownZoneElevationFtMSL, gradientPct, TORAFt, TODAFt, ASDAFt,
708708 LDAFt, LAHSO,
709709 visualGlideslopeIndicator, RVRSensors, hasRVV, approachLighting, hasREIL,
@@ -721,7 +721,7 @@ public struct RunwayEnd: Record {
721721 order. append ( contentsOf: [
722722 . id, . heading, . instrumentLandingSystem, . rightTraffic, . marking, . markingCondition,
723723 . threshold, . threshold, . threshold, . threshold, . threshold, . thresholdCrossingHeightFtAGL,
724- . visualGlidepathHundredthsDeg , . displacedThreshold, . displacedThreshold,
724+ . visualGlidepathDeg , . displacedThreshold, . displacedThreshold,
725725 . displacedThreshold,
726726 . displacedThreshold, . displacedThreshold, . thresholdDisplacementFt,
727727 . touchdownZoneElevationFtMSL,
@@ -750,7 +750,7 @@ public struct RunwayEnd: Record {
750750
751751 private enum CodingKeys : String , CodingKey {
752752 case id, heading, instrumentLandingSystem, rightTraffic, marking, markingCondition,
753- threshold, thresholdCrossingHeightFtAGL, visualGlidepathHundredthsDeg , displacedThreshold,
753+ threshold, thresholdCrossingHeightFtAGL, visualGlidepathDeg , displacedThreshold,
754754 thresholdDisplacementFt, touchdownZoneElevationFtMSL, visualGlideslopeIndicator, RVRSensors,
755755 hasRVV,
756756 approachLighting, hasREIL, hasCenterlineLighting, hasEndTouchdownLighting, controllingObject,
0 commit comments