Table: weatherkit_weather_alert
List the weather alerts for the requested location.
The weatherkit_weather_alert
table can be used to query information about severe weather alerts for the specified location.
You must specify location in the where or join clause using the latitude
and longitude
columns.
Examples
List weather alerts for Ann Arbor, MI
select *from weatherkit_weather_alertwhere latitude = '42.281' and longitude = '-83.743';
List weather alert descriptions and expiration times for Austin, TX
select description, expire_timefrom weatherkit_weather_alertwhere latitude = '30.267' and longitude = '-97.743';
Schema for weatherkit_weather_alert
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
area_id | text | An official designation of the affected area. | |
area_name | text | A human-readable name of the affected area. | |
certainty | text | How likely the event is to occur. | |
country_code | text | The ISO code of the reporting country. | |
description | text | A human-readable description of the event. | |
details_url | text | The URL to a page containing detailed information about the event. | |
effective_time | timestamp with time zone | The time the event went into effect. | |
end_time | timestamp with time zone | The time when the underlying weather event is projected to end. | |
event_onset_time | timestamp with time zone | The time when the underlying weather event is projected to start. | |
expire_time | timestamp with time zone | The time when the event expires. | |
id | text | A unique identifier of the event. | |
issued_time | timestamp with time zone | The time that event was issued by the reporting agency. | |
latitude | text | = | The latitude of the desired location. |
longitude | text | = | The longitude of the desired location. |
metadata | jsonb | Descriptive information about the weather data. | |
responses | jsonb | An array of recommended actions from the reporting agency. | |
severity | text | The level of danger to life and property. | |
source | text | The name of the reporting agency. | |
start_time | timestamp with time zone | A human-readable name of the affected area. | |
urgency | text | An indication of urgency of action from the reporting agency. |