AWFRiverObservation
Objective-C
@interface AWFRiverObservation : AWFWeatherObject
Swift
class AWFRiverObservation : AWFWeatherObject
An AWFRiverObservation
object represents the latest river observation data for a river.
-
The water height in feet.
Declaration
Objective-C
@property (nonatomic) CGFloat heightFT;
Swift
var heightFT: CGFloat { get set }
-
The water height in meters.
Declaration
Objective-C
@property (nonatomic) CGFloat heightM;
Swift
var heightM: CGFloat { get set }
-
The water flow in cubic feet per second.
Declaration
Objective-C
@property (nonatomic) CGFloat flowCFS;
Swift
var flowCFS: CGFloat { get set }
-
The water flow in cubic meters per second.
Declaration
Objective-C
@property (nonatomic) CGFloat flowCMS;
Swift
var flowCMS: CGFloat { get set }