{% if hourly %} {% set numSteps = hourly | calcNumEntries %} {% set currentStep = 0 %} {% set hours = hourly.slice(0, numSteps) %} {% for hour in hours %} {% if config.showUVIndex %} {% endif %} {% if config.showHumidity != "none" %} {% endif %} {% if config.showPrecipitationAmount %} {% if (not config.hideZeroes or hour.precipitationAmount>0) %} {% endif %} {% endif %} {% if config.showPrecipitationProbability %} {% if (not config.hideZeroes or hour.precipitationAmount>0) %} {% endif %} {% endif %} {% set currentStep = currentStep + 1 %} {% endfor %}
{{ hour.date | formatTime }} {{ hour.temperature | roundValue | unit("temperature") }} {% if hour.uv_index!=0 %} {{ hour.uv_index }} {% endif %} {{ hour.humidity }} {{ hour.precipitationAmount | unit("precip", hour.precipitationUnits) }} {{ hour.precipitationProbability | unit('precip', '%') }}
{% else %}
{{ "LOADING" | translate }}
{% endif %}