NowcastResult

public struct NowcastResult<Item> where Item : Decodable, Item : Encodable

A result of query data using NowcastQuery.

Specified in NowcastQuery.resultOptions.

  • An array of NowcastItem entities.

    It can be custom filtered and processed if needed.

    Declaration

    Swift

    public var items: [Item]
  • A valid GeoJSON string according to https://www.rfc-editor.org/rfc/rfc7946 .

    It can be used to show data on the map without additional processing.

    Declaration

    Swift

    public var geoJSON: String
  • A GeoJSON data.

    Declaration

    Swift

    public var geoJSONData: Data