我是维基数据查询服务的新手。
我想找到installed capacity
的所有power stations
。
我尝试了以下内容:Wikidata Query
SELECT ?power_station ?power_stationLabel ?installed_capacity WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?power_station wdt:P31 wd:Q159719.
OPTIONAL { ?power_station wdt:P2109 ?installed_capacity. }
}
LIMIT 100
我不明白为什么当我进入发电站的维基百科页面时,我经常会找到铭牌容量。 (ef:https://en.wikipedia.org/wiki/Pembroke_Power_Station)
然而,我没有从维基数据查询中得到结果。也就是说,我得到了发电厂的名称,但没有电力容量。
我也尝试了另一种方法,寻找铭牌容量的所有实例,但只返回installed capacity
(wd:P2109)。