Description:
We need a sparql query to get the title for all datasets
Some datasets are hand-selected to load into the named graph
"http://purl.org/twc/vocab/conversion/MetaDataset" on the LOGD triple
endpoint
http://logd.tw.rpi.edu/sparql. The following query will select the titles of datasets.
prefix void: <http://rdfs.org/ns/void#>
prefix dcterms: <http://purl.org/dc/terms/>
select *
where {
graph <http://purl.org/twc/vocab/conversion/MetaDataset> {
?a dcterms:title ?title
}
}
Of course, why only half a dozen have types is a concern... the enhancement parameters for data-gov 92 should be reviewed.
prefix void: <http://rdfs.org/ns/void#>
prefix dcterms: <http://purl.org/dc/terms/>
select *
where {
graph <http://purl.org/twc/vocab/conversion/MetaDataset> {
?a dcterms:title ?title; a ?type
}
}