blob: 88371230aa38eab446b82985ebb89fad034f8401 [file] [log] [blame]
(: XQuery Aggregate Query :)
(: Find the total precipitation. :)
fn:sum(
let $collection := "ghcnd"
for $r in collection($collection)/dataCollection/data
where $r/dataType eq "PRCP"
return $r/value
)