{% extends 'layout.html' %} {% block title %}{{title}}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block body %} {{ super() }} {% if ui %} {% include 'help.html' %} {% block help %}{% endblock %} {% endif %} {% for d in date %} {% endfor %} {% for h in hour %} {% for dt in datetime %} {% if h|string() in dt.split(" ")[1].split(":")[0] %} {% endif %} {% endfor %} {% endfor %}
{% if ui %}
{% endif %}
{{d}}
{% if h < 10 %}{% set h="0"+h|string() %}{% endif %}{{h}}H00 {% if dt in weatherData %}
{% set img="skc.svg" %} {% if weatherData[dt]["risque_neige"]=="oui" %} {% if weatherData[dt]["pluie"]>0 %} {% if weatherData[dt]["pluie"] > 30 %} {% set img="rasn.svg" %} {% else %} {% set img="rasn1.svg" %} {% endif %} {% else %} {% set img="sn.svg" %} {% endif %} {% elif weatherData[dt]["pluie"]>0 %} {% set img="hi_shwrs.svg" %} {% if weatherData[dt]["nebulosite"]["totale"]>=25 and weatherData[dt]["nebulosite"]["totale"] < 50 %} {% set img="shra.svg" %} {% endif %} {% if weatherData[dt]["nebulosite"]["totale"]>=50 %} {% if weatherData[dt]["pluie"] > 30 %} {% set img="ra.svg" %} {% else %} {% set img="ra1.svg" %} {% endif %} {% endif %} {% else %} {% if weatherData[dt]["nebulosite"]["totale"]>=10 and weatherData[dt]["nebulosite"]["totale"] < 25 %} {% set img="few.svg" %} {% endif %} {% if weatherData[dt]["nebulosite"]["totale"]>=25 and weatherData[dt]["nebulosite"]["totale"] < 50 %} {% set img="sct.svg" %} {% endif %} {% if weatherData[dt]["nebulosite"]["totale"]>=50 and weatherData[dt]["nebulosite"]["totale"] < 75 %} {% set img="bkn.svg" %} {% endif %} {% if weatherData[dt]["nebulosite"]["totale"]>=75 %} {% set img="ovc.svg" %} {% endif %} {% endif %}
{% if weatherData[dt]["temperature"]["2m"]-273.15<=0 %} {{(weatherData[dt]["temperature"]["2m"]-273.15)|round(1)}} {% else %} {{(weatherData[dt]["temperature"]["2m"]-273.15)|round(1)}} {% endif %} °C
{{weatherData[dt]["humidite"]["2m"]}} %
{{weatherData[dt]["vent_moyen"]["10m"]}} {% if weatherData[dt]["vent_rafales"]["10m"]>weatherData[dt]["vent_moyen"]["10m"] %} | {{weatherData[dt]["vent_rafales"]["10m"]}} {% endif %} km/h {% set dir=weatherData[dt]["vent_direction"]["10m"] %} {% if dir > 360 %} {% set dir=dir-360 %} {% endif %} {% if dir < 22.5 or dir >= 337.5 %} N {% endif %} {% if dir >= 22.5 and dir < 67.5 %} NE {% endif %} {% if dir >= 67.5 and dir < 112.5 %} E {% endif %} {% if dir >= 112.5 and dir < 157.5 %} SE {% endif %} {% if dir >= 157.5 and dir < 202.5 %} S {% endif %} {% if dir >= 202.5 and dir < 247.5 %} SW {% endif %} {% if dir >= 247.5 and dir < 292.5 %} W {% endif %} {% if dir >= 292.5 and dir < 337.5 %} NW {% endif %} ({{dir}}°)
{% if weatherData[dt]["pluie"]>0 %}
{{weatherData[dt]["pluie"]}} mm/3h rain
{% endif %} {% if weatherData[dt]["risque_neige"]=="oui" %}
{{weatherData[dt]["iso_zero"]}} m freezing level
{% endif %}
{% endif %}
Model run: {{weatherData["model_run"]}} fetched {{fetchTime}} ago
{% endblock %}