{% load tz %} {% if embedded_timeseries_table %}
Temperature | RH | Wind Speed | Solar Radiation | Precipitation | Reference ET | Growing Degree Days | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Date | Max | Min | Max | Min | Mean | Total | Total | ETh | ETo | ETr | Daily | Cumulative |
{{ time_zone }} | {% if imperial %}F{% else %}C{% endif %} | {% if imperial %}F{% else %}C{% endif %} | % | % | {% if imperial %}MPH{% else %}m/s{% endif %} | MJ/m^2 | {% if imperial %}in.{% else %}mm{% endif %} | {% if imperial %}in.{% else %}mm{% endif %} | {% if imperial %}in.{% else %}mm{% endif %} | {% if imperial %}in.{% else %}mm{% endif %} | ||
{{ row.timestamp|date:"Y-m-d" }} | {{ row.air_temp_max|floatformat:"-2" }} | {{ row.air_temp_min|floatformat:"-2" }} | {{ row.rh_max|floatformat:"-2" }} | {{ row.rh_min|floatformat:"-2" }} | {{ row.wind_speed_mean|floatformat:"-2" }} | {{ row.solar_rad_total|floatformat:"-2" }} | {{ row.precip_total|floatformat:"-2"|default:"0.0" }} | {{ row.eth|floatformat:"-2"|default:"0.0" }} | {{ row.eto|floatformat:"-2"|default:"0.0" }} | {{ row.etr|floatformat:"-2"|default:"0.0" }} | {{ row.gdd|floatformat:"-2"|default:"0.0" }} | {{ row.cgdd|floatformat:"-2"|default:"0.0" }} |