Skip to content

Instantly share code, notes, and snippets.

@rtroncy
Created April 2, 2014 12:51
Show Gist options
  • Save rtroncy/9933458 to your computer and use it in GitHub Desktop.
Save rtroncy/9933458 to your computer and use it in GitHub Desktop.
SPARQL query to get features that have a geometry which is not a POINT
PREFIX lgd:<http://linkedgeodata.org/>
PREFIX lgdo:<http://linkedgeodata.org/ontology/>
PREFIX geom:<http://geovocab.org/geometry#>
PREFIX ogc:<http://www.opengis.net/ont/geosparql#>
SELECT * {
?s rdf:type lgdo:School .
?s rdfs:label ?label .
?s geom:geometry ?geo .
?geo ogc:asWKT ?v .
FILTER REGEX(?v,"LINESTRING") .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment