Dump all Countries containing in their name "United".
prefix ndw:<http://demo.openlinksw.com/schemas/northwind#>
prefix wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#>
select ?name ?code ?lat ?long
where
{
?cnt a wgs:SpatialThing .
?cnt ndw:name ?name .
?cnt ndw:code ?code .
?cnt wgs:lat ?lat .
?cnt wgs:long ?long .
FILTER REGEX(str(?name), "^United")
}
Sample Data (Live Query Results)
- Click *Here* for a live SPARQL Query (via SPARQL Protocol) against a collection of Northwind Countries.