What is this place? data.geolink.org hosts a SPARQL endpoint for people to query the GeoLink knowledge base which contains RDF information on a number of ocean and earth science data providers:
SELECT (COUNT(?s) AS ?triples)
WHERE { ?s ?p ?o }
SELECT ?g count(*) as ?count
WHERE {
GRAPH ?g { ?s ?p ?o }
}
ORDER BY DESC(?count)
PREFIX gl: <http://schema.geolink.org/1.0/base/main#>
SELECT ?name ?s COUNT(?cruise) as ?count
WHERE {
?s a gl:Vessel .
?s rdfs:label ?name .
?cruise gl:hasVessel ?s
}
ORDER BY DESC(?count)
LIMIT 10
PREFIX gl: <http://schema.geolink.org/1.0/base/main#>
SELECT distinct ?person ?fullname ?affilname
WHERE {
?cruise gl:hasVessel <http://data.rvdata.us/id/vessel/33BI> .
?cruise gl:hasChiefScientist ?person .
?person gl:hasFullName ?fullname .
?person gl:hasAffiliation ?affil .
?affil rdfs:label ?affilname
}
PREFIX gl: <http://schema.geolink.org/1.0/base/main#>
SELECT ?vesselname COUNT(?vesselname) as ?count
WHERE {
?cruise gl:hasVessel ?vessel .
?cruise gl:hasChiefScientist ?person .
?vessel rdfs:label ?vesselname
}
ORDER BY DESC(?count)