Condiciones actuales
| Temperatura de superficie | $current.outTemp |
| Sensación de frío | $current.windchill |
| Sensación de calor | $current.heatindex |
| Punto de rocío | $current.dewpoint |
| Humedad | $current.outHumidity |
| Presión barométrica | $current.barometer |
| Tendencia de presión ($trend.time_delta.hour.format("%.0f")) | $trend.barometer |
| Viento | $current.windSpeed $current.windDir.ordinal_compass ($current.windDir) |
| Tasa de precipitación | $current.rainRate |
#if $day.extraTemp1.has_data
| Pond Temperature | $current.extraTemp1 |
#end if
#if $day.UV.has_data
| UV | $current.UV |
#end if
#if $day.ET.has_data and $day.ET.sum.raw > 0.0
| ET | $current.ET |
#end if
#if $day.radiation.has_data
| Radiación solar | $current.radiation |
#end if
Condiciones desde medianoche
| Temperatura máxima | $day.outTemp.max | $day.outTemp.maxtime |
| Temperatura mínima | $day.outTemp.min | $day.outTemp.mintime |
| Máxima sensación de calor | $day.heatindex.max | $day.heatindex.maxtime |
| Extremo de sensación de frío | $day.windchill.min | $day.windchill.mintime |
| Máxima sensación de rocío | $day.dewpoint.max | $day.dewpoint.maxtime |
| Mínima sensación de rocío | $day.dewpoint.min | $day.dewpoint.mintime |
| Máxima Humedad | $day.outHumidity.max | $day.outHumidity.maxtime |
| Mínima Humedad | $day.outHumidity.min | $day.outHumidity.mintime |
| Máxima presión | $day.barometer.max | $day.barometer.maxtime |
| Mínima presión | $day.barometer.min | $day.barometer.mintime |
| Lluvia de hoy | $day.rain.sum | |
| Máxima tasa de precipitación | $day.rainRate.max | $day.rainRate.maxtime |
| Viento máximo | $day.wind.max $day.wind.gustdir | $day.wind.maxtime |
| Viento promedio | $day.wind.avg | |
| Ráfagas | $day.wind.rms | |
| Velocidad promedio de viento | $day.wind.vecavg | |
| Direccián promedio de viento | $day.wind.vecdir | |
#if $day.extraTemp1.has_data
| High Pond Temp | $day.extraTemp1.max | $day.extraTemp1.maxtime |
| Low Pond Temp | $day.extraTemp1.min | $day.extraTemp1.mintime |
#end if
#if $day.UV.has_data
| High UV | $day.UV.max | $day.UV.maxtime |
| Low UV | $day.UV.min | $day.UV.mintime |
#end if
#if $day.ET.has_data and $day.ET.sum.raw >0.0
| Máxima evapotranspiración | $day.ET.max | $day.ET.maxtime |
| Mínima evapotranspiración | $day.ET.min | $day.ET.mintime |
#end if
#if $day.radiation.has_data
| Máxima radiación solar | $day.radiation.max | $day.radiation.maxtime |
| Mínima radiación solar | $day.radiation.min | $day.radiation.mintime |
#end if
#if $Extras.has_key('radar_gif')
#end if
#if $Extras.has_key('lightning_map')
#end if
Almanaque
#if $almanac.hasExtras
## Extended almanac information is available. Do the full set of tables.
#set $sun_altitude = $almanac.sun.alt
#if $sun_altitude < 0
#set $sun_None="
(Always down)"
#else
#set $sun_None="
(Always up)"
#end if
Sun
| Start civil twilight: | $almanac(horizon=-6).sun(use_center=1).rise |
| Sunrise | $almanac.sun.rise.string($sun_None) |
| Transit: | $almanac.sun.transit |
| Sunset: | $almanac.sun.set.string($sun_None) |
| End civil twilight: | $almanac(horizon=-6).sun(use_center=1).set |
| Azimuth: | $("%.1f°" % $almanac.sun.az) |
| Altitude: | $("%.1f°" % $sun_altitude) |
| Right ascension: | $("%.1f°" % $almanac.sun.ra) |
| Declination: | $("%.1f°" % $almanac.sun.dec) |
#if $almanac.next_equinox.raw < $almanac.next_solstice.raw
## The equinox is before the solstice. Display them in order.
| Equinox: | $almanac.next_equinox |
| Solstice: | $almanac.next_solstice |
#else
## The solstice is before the equinox. Display them in order.
| Solstice: | $almanac.next_solstice |
| Equinox: | $almanac.next_equinox |
#end if
Moon
| Rise: | $almanac.moon.rise |
| Transit: | $almanac.moon.transit |
| Set: | $almanac.moon.set |
| Azimuth: | $("%.1f°" % $almanac.moon.az) |
| Altitude: | $("%.1f°" % $almanac.moon.alt) |
| Right ascension: | $("%.1f°" % $almanac.moon.ra) |
| Declination: | $("%.1f°" % $almanac.moon.dec) |
#if $almanac.next_full_moon.raw < $almanac.next_new_moon.raw
| Full moon: | $almanac.next_full_moon |
| New moon: | $almanac.next_new_moon |
#else
| New moon: | $almanac.next_new_moon |
| Full moon: | $almanac.next_full_moon |
#end if
| Phase: | $almanac.moon_phase ($almanac.moon_fullness% full) |
#else
## No extended almanac information available. Fall back to a simple table.
| Salida del sol: | $almanac.sunrise |
| Puesta del sol: | $almanac.sunset |
| Fase lunar: | $almanac.moon_phase ($almanac.moon_fullness% llena) |
#end if
Pronóstico
#include "forecast_table.inc"