Created
August 23, 2023 01:21
-
-
Save baskaufs/fda2c7cbfca2424ccf570a2a38607064 to your computer and use it in GitHub Desktop.
Find concepts that are equivalent to Getty AAT categories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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