NowcastItem
public struct NowcastItem : Codable, Equatable, Hashable
The nowcast data object.
-
A nowcast severity level.
Declaration
Swift
public var sev: NowcastSeverity -
A SkyPath altitude where 1 is 1000 feet.
Declaration
Swift
public var alt: Int -
Altitude. Measured in feet.
Declaration
Swift
public var altFt: Double { get } -
A forecast hours for which this nowcast data was generated.
Declaration
Swift
public var forecastH: Int -
A forecast timestamp for which this nowcast data was generated.
Declaration
Swift
public var ts: Int -
The H3 index using resolution 5.
Declaration
Swift
public var h3Index: UInt64 -
A tile representation for this nowcast data.
Declaration
Swift
public var tile: Tile { get } -
The H3 hexagon vertices coordinates of the nowcast tile area.
Declaration
Swift
public var vertices: [CLLocationCoordinate2D] { get } -
It’s a center coordinate of a
vertices.Declaration
Swift
public var coordinate: CLLocationCoordinate2D { get } -
The H3 hex index using resolution 5.
Declaration
Swift
public var h3Hex: String { get }
NowcastItem Structure Reference