query-59c590e99e082615f00442ef22b992a5

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX gvp: <http://vocab.getty.edu/ontology#>
PREFIX bio: <http://purl.org/vocab/bio/0.1/>

SELECT
?placeURL ?wdSearchURL ?name ?id ?count
  WHERE {
  SERVICE <http://vocab.getty.edu/sparql.json> {
    { SELECT ?place ?name ?id (COUNT(?place) as ?count) {
      ?agent (gvp:biographyPreferred/(schema:birthPlace|schema:deathPlace)|bio:event/(schema:location|(schema:location/gvp:broaderExtended)))/^foaf:focus ?place .
      ?place gvp:prefLabelGVP/gvp:term ?name .
      ?place dc:identifier ?id .
      }
      GROUP BY ?place ?name ?id
    }
  }
  MINUS { ?item wdt:P1667 ?id . }
  BIND(URI(CONCAT("http://vocab.getty.edu/page/tgn/", ?id)) AS ?placeURL)
  BIND(URI(CONCAT("https://www.wikidata.org/wiki/Special:Search/", ?name)) AS ?wdSearchURL)
}
ORDER BY DESC(?count)
LIMIT 30

Query found at