AWFStormCellForecast

Objective-C

@interface AWFStormCellForecast : AWFWeatherObject

Swift

class AWFStormCellForecast : AWFWeatherObject

An AWFStormCellForecast object represents a single forecast period and position for a storm cell.

  • Forecasted coordinate position for the period.

    Declaration

    Objective-C

    @property (nonatomic) CLLocationCoordinate2D coordinate;

    Swift

    var coordinate: CLLocationCoordinate2D { get set }
  • Forecasted bearing of the cell relative to the radar station in degrees.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat degree;

    Swift

    var degree: CGFloat { get set }
  • Forecasted distance of the cell relative to the radar station in nautical miles.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat distance;

    Swift

    var distance: CGFloat { get set }
  • GMT date of the forecasted time for the period.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSDate *timestamp;

    Swift

    var timestamp: Date? { get set }