AWFNormalStation
Objective-C
@interface AWFNormalStation : AWFGeographicObject
Swift
class AWFNormalStation : AWFGeographicObject
An AWFNormalStation object represents data returned by the normals/stations endpoint
of the Aeris Weather API.
-
Coop/station id.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *stationId;Swift
var stationId: String? { get set } -
Elevation of the station in feet.
Declaration
Objective-C
@property (nonatomic) CGFloat elevationFT;Swift
var elevationFT: CGFloat { get set } -
Elevation of the station in meters.
Declaration
Objective-C
@property (nonatomic) CGFloat elevationM;Swift
var elevationM: CGFloat { get set } -
WMO id of the station, if available.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *wmoId;Swift
var wmoId: String? { get set } -
Whether or not the station has temperature normals data.
Declaration
Objective-C
@property (nonatomic) BOOL hasTemp;Swift
var hasTemp: Bool { get set } -
Whether or not the station has precipitation normals data.
Declaration
Objective-C
@property (nonatomic) BOOL hasPrecip;Swift
var hasPrecip: Bool { get set } -
Whether or not the station has snowfall normals data.
Declaration
Objective-C
@property (nonatomic) BOOL hasSnow;Swift
var hasSnow: Bool { get set }
View on GitHub
AWFNormalStation Class Reference