blob: 673ce08001208b6de64ca8854231ed0ad7326f3d [file] [log] [blame]
(: XQuery Aggregate Query :)
(: Find the number of wind sensor readings. :)
fn:count(
let $collection := "ghcnd"
for $r in collection($collection)/dataCollection/data
where $r/dataType eq "AWND"
return $r/value
)