blob: 44a6112d6f3ab49c2d441aebb978a9ff9c9db89d [file] [log] [blame]
(: XQuery Aggregate Query :)
(: Find the average minimum temperature. :)
fn:avg(
let $collection := "ghcnd_quarter_1|ghcnd_quarter_2|ghcnd_quarter_3|ghcnd_quarter_4"
for $r in collection($collection)/dataCollection/data
where $r/dataType eq "TMIN"
return $r/value
)