tags:

views:

45

answers:

1
+1  Q: 

d;dsvh;sdbvzfbad

Schoffel Maak IK EEn woudld SPARQL query ... meer : Rivieren sterven uitmonden in de Rijn , diedan 50 kilometer ?

+2  A: 

Using DBpedia you could do something like this...

SELECT ?river ?riverName ?length
WHERE {
  ?river <http://dbpedia.org/ontology/riverMouth&gt; <http://dbpedia.org/resource/Rhine&gt; .
  ?river <http://dbpedia.org/ontology/length&gt; ?length .
  FILTER (?length > 50000)
  ?river <http://www.w3.org/2000/01/rdf-schema#label&gt; ?riverName .
  FILTER (lang(?riverName) = "en")
}
ORDER BY ?riverName

I'm assuming the length property in DBpedia uses meters, but you should check. You can test the query at http://dbpedia.org/sparql.

If this was homework and I just gave you the answer, I'd encourage you browse around at http://dbpedia.org/page/Rhine to see how I came up with it :)

wynz