blob: 703937a9532194e2ca5968da4909e7c8e5a1da0a [file] [log] [blame]
(: XQuery Aggregate Query :)
(: Find the highest recorded temperature (TMAX) in Celsius. :)
fn:max(
let $collection := "ghcnd_half_1|ghcnd_half_2"
for $r in collection($collection)/dataCollection/data
where $r/dataType eq "TMAX"
return $r/value
) div 10