AWFRiverImpact

Objective-C

@interface AWFRiverImpact : AWFWeatherObject

Swift

class AWFRiverImpact : AWFWeatherObject

An AWFRiverImpact object contains information about the local impacts when a river reaches a particular water level.

  • The height in feet that the impact begins to occur.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat heightFT;

    Swift

    var heightFT: CGFloat { get set }
  • The height in meters that the impact begins to occur.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat heightM;

    Swift

    var heightM: CGFloat { get set }
  • The description of the local impacts at this water level.

    Declaration

    Objective-C

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

    Swift

    var text: String { get set }