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