next
previous
items

Data table via SPARQL

Largest lakes in EU (DBPedia)

Data table via SPARQL Published 01 Sep 2012 Last modified 25 Mar 2024

Download this dataset

Dataset preview

(Live Query)

label area
"Norwegian Sea"@en "1383000000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"North Sea"@en "570000000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"Baltic Sea"@en "377000000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"Tyrrhenian Sea"@en "275000000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"Adriatic Sea"@en "138600000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"English Channel"@en "75000000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"Skagerrak"@en "47000000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"Irish Sea"@en "46007000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"Bothnian Bay"@en "36800000000.0"^^<http://www.w3.org/2001/XMLSchema#double>
"Lake Ladoga"@en "17700000000.0"^^<http://www.w3.org/2001/XMLSchema#double>

Received 20 rows in 0.062 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/eionet/data/local-sparql-queries/largest-lakes-in-eu-dbpedia/daviz.json

For system integrators

The following info can be used by a system developer / database administrator in order to retrieve this dataset programmatically over the web using a SPARQL client.

Are you new to Linked Data technology? visit http://linkeddata.org



http://dbpedia.org/sparql

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dbpedia-owl: <http://dbpedia.org/ontology/>
PREFIX dcterms: <http://purl.org/dc/terms/>

SELECT DISTINCT ?label ?area
where {
 ?lakeuri a <http://dbpedia.org/ontology/Lake>;
          dbpedia-owl:areaTotal ?area;
          rdfs:label ?label FILTER(LANG(?label) = "en")
 ?lakeuri dbpedia-owl:country ?basincountry.
 ?basincountry dcterms:subject <http://dbpedia.org/resource/Category:Member_states_of_the_European_Union>
 FILTER(!?lakeuri IN (<http://dbpedia.org/resource/Gulf_of_Finland>))
} ORDER BY DESC(?area)
LIMIT 20


Permalinks

Document Actions