🗺️ Map the Endangered & Critically Endangered birds
SELECT?wkt?stWHERE {
?sp v:iucnStatus ?st . FILTER(?st IN ("EN", "CR"))
?o a ?sp ; geo:asWKT ?wkt .
}
LIMIT 3000
Run this query →no server · no download · no account
caviri.github.io/rete
Run this query in the playground →3000 mapped feature(s) · 70.7 s · 252.5 MB of 1461.5 MB read over HTTP range · no server, no download — the query runs in your browser.
The query
PREFIX v: <https://w3id.org/rete/gbif/vocab#>
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
SELECT ?wkt ?st WHERE {
?sp v:iucnStatus ?st . FILTER(?st IN ("EN", "CR"))
?o a ?sp ; geo:asWKT ?wkt .
}
LIMIT 3000