1

我尝试根据城市名称的一部分来查找城市(通常是https://en.wikipedia.org/wiki/Lavo%C3%BBte-sur-Loire,法国城市)

我发现的唯一方法是首先通过以下请求请求“Lavoute”(不带重音)。

https://fr.wikipedia.org/w/api.php?action=opensearch&generator=links&format=xml&search=lavoute&prop=pageprops&gpllimit=50&ppprop=wikibase_item&format=json

它返回 5 个链接,然后使用此信息请求所有结果,这些结果最后都具有这样的结果,并且具有良好的价值(具有属性 P281 意味着它是一个城市)

https://www.wikidata.org/w/api.php?action=wbgetentities&titles=Lavo%C3%BBte-sur-Loire&sites=enwiki|frwiki&format=json

有没有更简单的方法?

4

1 回答 1

5

正如您所说,您想根据其名称的一部分查找一个城市,这是您问题的解决方案:

SELECT ?location ?locationLabel WHERE {
 ?location wdt:P17 wd:Q142.
 ?location wdt:P31 ?settlement .
 ?settlement wdt:P279 wd:Q3266850 .
 ?location rdfs:label ?de_label .
 FILTER (lang(?de_label) = "en") .
 FILTER (regex((?de_label), "Lavoûte")).

 SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
 }

请参阅此链接,您可能还会对您的问题有所了解: https ://opendata.stackexchange.com/questions/11675/most-efficient-way-to-get-the-wikidata-entity-for-a-city -给定的字符串

于 2018-02-22T06:58:43.533 回答