steampipe plugin install ellisvalentiner/weatherkit

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_availability
where
latitude = '42.281'
and longitude = '-83.743';

Schema for weatherkit_availability

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
data_settextThe collection of weather information for a location.
latitudetext=A numeric value indicating the latitude of the coordinate between -90 and 90.
longitudetext=A numeric value indicating the longitude of the coordinate between -180 and 180.