2

我有兴趣从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

但自然这种语法是不正确的。

4

1 回答 1

4

他们的 SPARQL 端点开始,你可以做这样的事情——

DESCRIBE <http://statistics.gov.scot/def/hierarchy/best-fit#country>

然后,根据这些结果,你可能会尝试这样的事情,结果并不是你说的你想要的,但可能会更好——

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?hierarchy
        ?label
WHERE
  { ?hierarchy  rdfs:subPropertyOf  <http://statistics.gov.scot/def/hierarchy/best-fit>
             ;  rdfs:label          ?label
  }
于 2017-12-28T22:27:48.747 回答