1,965
edits
m (→Examples: Additions to QueryDayFile) |
m (→Examples) |
||
|
==Examples==
1 - The maximum sun hours in a day this year and the date on which it occurred:▼
▲The maximum sun hours in a day this year and the date on which it occurred:
`<#QueryDayFile value=SunShineHours function=max from=ThisYear showDate=y dp=2 format="dd-MM-yyyy">`
returns: `["12.32","26-07-2024"]`
2 - The total sun hours last year:
<#QueryDayFile value=SunShineHours function=sum from=Year-1 dp=2>
returns: 1287.22
3 - Highest sun hours in any year, and the year it occurred:
<#QueryDayFile value=SunShineHours function=sum from=Yearly resFunc=max dp=2 showDate=y format=yyyy>
returns: ["1405.9","2018"]
4 - The total evapotranspiration last month:
<#QueryDayFile value=ET> function=sum from=Month-1 dp=2>
returns: 23.56
5 - The average maximum UV-I in April & May 2024:
<#QueryDayFile value=HighUv function=avg from=2024-04-01 to=2024-06-01>
returns: 4.5
6 - The lowest minimum temperature that has occurred in any December (*NOTE: in reality there is standard web tag for this <#ByMonthTempL>*):
<#QueryDayFile value=LowTemp function=min from=Month12 resFunc=min showDate=y>
returns: ["-12.5","20/12/2010 07:17"]
7 - The highest minimum temperature that has occurred in any December (*NOTE: in reality there is standard web tag for this <#ByMonthMinTempH>*):
<#QueryDayFile value=LowTemp function=max from=Month12 resFunc=max showDate=y>
returns: ["12.1","19/12/2015 00:36"]
8 - The lowest minimum temperature that has occurred on this day
<#QueryDayFile value=LowTemp resFunc=min from=ThisDay showDate=y>
returns: ["5.2","05/10/2014 00:21"]
9 - The lowest minimum temperature that has occurred on this day (yesterdays date)
<#QueryDayFile value=LowTemp resFunc=min from=Day-1 showDate=y>
returns: ["4.5","04/10/2010 08:07"]
10 - The lowest minimum temperature that has occurred on this specified day
<#QueryDayFile value=LowTemp resFunc=min from=Day0421 showDate=y>
| |||