CLARIAH / clariah-plus

This is the project planning repository for the CLARIAH-PLUS project. It groups all technical documents and discussions pertaining to CLARIAH-PLUS in a central place and should facilitate findability, transparency and project planning, for the project as a whole.
9 stars 6 forks source link

Usage info: what datasets to summarize? #71

Open menzowindhouwer opened 2 years ago

menzowindhouwer commented 2 years ago

Where do we find datasets to distill vocab usage info from?

  1. YALC
  2. Awesome Humanities
menzowindhouwer commented 2 years ago

Maybe we can extract LD datasets from the VLO.

coret commented 2 years ago

You can find LD datasets via the NDE Datasetregister. Here a simple SPARQL query generator is available to create a query to find LD datasets in https://triplestore.netwerkdigitaalerfgoed.nl/

PREFIX dcat: <http://www.w3.org/ns/dcat#>
PREFIX dct: <http://purl.org/dc/terms/>

SELECT DISTINCT ?dataset ?title WHERE {
  ?dataset a dcat:Dataset .
  ?dataset dct:title ?title .
  FILTER(LANG(?title) = "" || LANGMATCHES(LANG(?title), "nl")) 
  ?dataset dcat:distribution ?distribution .
  ?distribution dct:format ?format .
  FILTER( ?format="application/ld+json" || ?format="application/n-quads" || ?format="application/n-triples" || ?format="application/rdf+xml" || ?format="application/sparql-query" || ?format="application/trig" || ?format="application/turtle" || ?format="application/vnd.hdt" || ?format="text/n3" || ?format="text/turtle")
}