AWFRiverCategory

Objective-C

@interface AWFRiverCategory : AWFWeatherObject

Swift

class AWFRiverCategory : AWFWeatherObject

An AWFRiverCategory object represents the various stages and their respective levels for a river.

  • The height in feet when the water body enters action stage (near flood stage).

    Declaration

    Objective-C

    @property (nonatomic) CGFloat actionFT;

    Swift

    var actionFT: CGFloat { get set }
  • The height in meters when the water body enters action stage (nears flood stage).

    Declaration

    Objective-C

    @property (nonatomic) CGFloat actionM;

    Swift

    var actionM: CGFloat { get set }
  • The height in feet that flooding begins for the water body.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat floodFT;

    Swift

    var floodFT: CGFloat { get set }
  • The height in meters that flooding begins for the water body.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat floodM;

    Swift

    var floodM: CGFloat { get set }
  • The height in feet that moderate flooding begins for the water body.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat moderateFT;

    Swift

    var moderateFT: CGFloat { get set }
  • The height in meters that moderate flooding begins for the water body.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat moderateM;

    Swift

    var moderateM: CGFloat { get set }
  • The height in feet that major flooding begins for the water body.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat majorFT;

    Swift

    var majorFT: CGFloat { get set }
  • The height in meters that major flooding begins for the water body.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat majorM;

    Swift

    var majorM: CGFloat { get set }
  • The height in feet that the water body is considered to be low.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat lowThresholdFT;

    Swift

    var lowThresholdFT: CGFloat { get set }
  • The height in meters that the water body is considered to be low.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat lowThresholdM;

    Swift

    var lowThresholdM: CGFloat { get set }