{# NOAA SWPC planetary K-index. Fields from payload->data->data. #}
{% set d = (event.data.get('data') or {}).get('data') or {} %}
{% if d.get('Kp') is not none %}
Kp
{{ d.Kp }}
{% endif %}
{% if d.get('a_running') is not none %}
A-running
{{ d.a_running }}
{% endif %}
{% if d.get('station_count') is not none %}
Stations
{{ d.station_count }}
{% endif %}
{% if d.get('time_tag') is not none %}