我有兴趣从statistics.gov.scot获取可用的不同层次结构的列表。我想列出的最合适的层次结构如下:
http://statistics.gov.scot/def/hierarchy/best-fit#community-health-partnership
http://statistics.gov.scot/def/hierarchy/best-fit#council-area
http://statistics.gov.scot/def/hierarchy/best-fit#country
可通过此示例 geography的API部分获得。
期望的结果
我希望返回所需的结果:
community-health-partnership
council-area
country
如何构建实际产生的查询,我可以通过以下方式获取所有可用地区的列表:
PREFIX sdmx: <http://purl.org/linked-data/sdmx/2009/dimension#>
SELECT DISTINCT ?framework
WHERE {
?a sdmx:refArea ?framework .
} LIMIT 10
我正在尝试一些东西:
PREFIX fits: <http://statistics.gov.scot/def/hierarchy/best-fit#>
SELECT DISTINCT ?framework
WHERE {
?a fits ?framework .
} LIMIT 10
但自然这种语法是不正确的。