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