AWFRiverRecord

Objective-C

@interface AWFRiverRecord : AWFWeatherObject

Swift

class AWFRiverRecord : AWFWeatherObject

An AWFRiverRecord object is a single record high or low event at a specific river gauge.

  • The GMT date that the record occurred.

    Declaration

    Objective-C

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

    Swift

    var timestamp: Date { get set }
  • The water level height in feet when the record occurred.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat heightFT;

    Swift

    var heightFT: CGFloat { get set }
  • The water level height in meters when the record occurred.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat heightM;

    Swift

    var heightM: CGFloat { get set }