AWFLightningThreatMovement

Objective-C

@interface AWFLightningThreatMovement : AWFWeatherObject

Swift

class AWFLightningThreatMovement : AWFWeatherObject

An AWFLightningThreat object represents data for a single period returned by the lightning/threats endpoint of the Aeris Weather API.

  • Estimated direction the lightning storm threat is moving at the time of the advisory in degrees.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat direction;

    Swift

    var direction: CGFloat { get set }
  • Estimated direction the lightning storm threat is moving at the time of the advisory as a Cardinal coordinate value.

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *_Nonnull directionENG;

    Swift

    var directionENG: String { get set }
  • Estimated speed the lightning storm threat is moving at the time of the advisory in knots.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat speedKTS;

    Swift

    var speedKTS: CGFloat { get set }
  • Estimated speed the lightning storm threat is moving at the time of the advisory in kilometers per hour.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat speedKMH;

    Swift

    var speedKMH: CGFloat { get set }
  • Estimated speed the lightning storm threat is moving at the time of the advisory in miles per hour.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat speedMPH;

    Swift

    var speedMPH: CGFloat { get set }
  • Reliability of the estimated threat movement information, or AWFLightningThreatMovementReliabilityNotAvailable if not available.

    Declaration

    Objective-C

    @property (nonatomic) AWFLightningThreatMovementReliability _Nonnull reliability;

    Swift

    unowned(unsafe) var reliability: NSString { get set }