三元组的QName(MarkLogic)

时间:2019-02-19 08:28:05

标签: sparql geospatial marklogic

我一直在尝试各种方法来从我的三元组访问lat和long QName。我的三重数据的一个示例是

<?xml  version="1.0" encoding="UTF-8"?>
<sem:triples xmlns:sem="http://marklogic.com/semantics">
  <sem:triple>
    <sem:subject>http://dbpedia.org/resource/Slantsy</sem:subject>
    <sem:predicate>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</sem:predicate>
    <sem:object>http://www.opengis.net/gml/_Feature</sem:object>
  </sem:triple>
  <sem:triple>
    <sem:subject>http://dbpedia.org/resource/Slantsy</sem:subject>
    <sem:predicate>http://www.w3.org/2003/01/geo/wgs84_pos#lat</sem:predicate>
    <sem:object datatype="http://www.w3.org/2001/XMLSchema#double">59.11666666666667</sem:object>
  </sem:triple>
  <sem:triple>
    <sem:subject>http://dbpedia.org/resource/Slantsy</sem:subject>
    <sem:predicate>http://www.w3.org/2003/01/geo/wgs84_pos#long</sem:predicate>
    <sem:object datatype="http://www.w3.org/2001/XMLSchema#double">28.083333333333332</sem:object>
  </sem:triple>
  <sem:triple>
    <sem:subject>http://dbpedia.org/resource/Slantsy</sem:subject>
    <sem:predicate>http://www.georss.org/georss/point</sem:predicate>
    <sem:object xml:lang="en">59.11666666666667 28.083333333333332</sem:object>
  </sem:triple>
</sem:triples>

SPARQL“ DESCRIBE”的输出

@prefix xs: <http://www.w3.org/2001/XMLSchema#> .
@prefix p2: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
<http://dbpedia.org/resource/Slantsy> <http://www.georss.org/georss/point> "59.11666666666667 28.083333333333332"@en ;
                                      a <http://www.opengis.net/gml/_Feature> ;
                                      p2:long "28.0833333333333"^^xs:double ;
                                      p2:lat "59.1166666666667"^^xs:double .

我在该线程How to create and use GeoSpatial indexes in Marklogic from Sparql

中看到了类似的情况

使用

访问Qname的位置
fn:QName("http://www.w3.org/2003/01/geo/wgs84_pos#", "lat")

因此,我尝试了类似的方法并使用了

cts:search(/sem:triples,
   cts:element-pair-geospatial-query(
     xs:QName("sem:triples"),
     fn:QName("http://www.w3.org/2001/01/geo/wgs84_pos#", "lat"),
     fn:QName("http://www.w3.org/2001/01/geo/wgs84_pos#", "long"),
     cts:circle(2000, cts:point(59,28)))
)

但是,我收到了一个空查询,似乎不正确。任何建议将不胜感激谢谢。

===更新=== 终于按照grtjin的建议使其工作了。地理空间索引是使用路径添加的

/sem:triples/sem:triple[sem:predicate = 'http://www.georss.org/georss/point']/sem:object

并使用

查询
cts:search(fn:doc(),
  cts:path-geospatial-query(
  "/sem:triples/sem:triple[sem:predicate = 'http://www.georss.org/georss/point']/sem:object",
  cts:circle(10, cts:point(59,28))
  )
)

可以工作并返回正确的结果。

但是我也尝试使用

进行查询
cts:search(fn:doc()/sem:triples,
  cts:path-geospatial-query(
  "/sem:triple[sem:predicate = 'http://www.georss.org/georss/point']/sem:object",
  cts:circle(10, cts:point(59,28))
  )
)

尽管希望它能奏效,因为我应该使用指定的路径来查询每个sem:triples项,以达到特定的经纬度。我收到一个空查询。我在这里理解错了吗?

1 个答案:

答案 0 :(得分:1)

如果可以的话,会很好,但是不幸的是,元素对索引不能以这种方式工作。

首先,子元素必须是指定祖先的直接子代,这就是为什么它说父而不是祖先的原因。

第二,您不能像这样定位元素值。包含lat和long的元素都是sem:object元素。

我建议改为在包含点的东西上使用地理空间路径索引,而您恰好拥有该点。我认为这可以作为路径参考:

sem:triple[sem:predicate = "http://www.georss.org/georss/point"]/sem:object

HTH!