Table: weatherkit_availability
Determine the data sets available for the specified location.
The weatherkit_availability
table can be used to query information about the data sets that are available for the specified location.
You must specify location in the where or join clause using the latitude
and longitude
columns.
Examples
List available data sets for Ann Arbor, MI
select *from weatherkit_availabilitywhere latitude = '42.281' and longitude = '-83.743';
Schema for weatherkit_availability
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
data_set | text | The collection of weather information for a location. | |
latitude | text | = | A numeric value indicating the latitude of the coordinate between -90 and 90. |
longitude | text | = | A numeric value indicating the longitude of the coordinate between -180 and 180. |