Created
April 2, 2014 12:51
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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