AWFTideStation
Objective-C
@interface AWFTideStation : AWFWeatherObject
Swift
class AWFTideStation : AWFWeatherObject
An AWFTideStation object represents data returned by the tides/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 } -
Latitude position of the event.
Declaration
Objective-C
@property (nonatomic) CGFloat latitude;Swift
var latitude: CGFloat { get set } -
Longitude position of the event.
Declaration
Objective-C
@property (nonatomic) CGFloat longitude;Swift
var longitude: CGFloat { get set } -
Place or nearest place to the event.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *city;Swift
var city: String? { get set } -
Abbreviated state in which the event occurred.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *state;Swift
var state: String? { get set } -
Abbreviated country in which the event occurred.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *country;Swift
var country: String? { get set } -
Local time zone of the event location.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSTimeZone *timeZone;Swift
var timeZone: TimeZone? { get set } -
The station type “harmonic” or “subordinate”
Declaration
Objective-C
@property (nonatomic) CGFloat type;Swift
var type: CGFloat { get set }
View on GitHub
AWFTideStation Class Reference