Skip to content

Instantly share code, notes, and snippets.

@baskaufs
Created August 23, 2023 01:21
Show Gist options
  • Select an option

  • Save baskaufs/fda2c7cbfca2424ccf570a2a38607064 to your computer and use it in GitHub Desktop.

Select an option

Save baskaufs/fda2c7cbfca2424ccf570a2a38607064 to your computer and use it in GitHub Desktop.
Find concepts that are equivalent to Getty AAT categories
prefix skos: <http://www.w3.org/2004/02/skos/core#>
prefix skosxl: <http://www.w3.org/2008/05/skos-xl#>
select distinct ?iri ?prefLabel ?otherConcept
where {
# Use bind to avoid having to enter the ID twice
bind(<http://vocab.getty.edu/aat/300047090> as ?iri)
?iri skosxl:prefLabel ?labelObject.
?labelObject skosxl:literalForm ?prefLabel.
filter(lang(?prefLabel)="en")
# Get the equivalent Wikidata concept
optional {?iri skos:exactMatch ?otherConcept.}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment