我正在使用来自 maven 存储库的 Jena(TDB 0.10.1,CORE/ARQ 2.10.1)。我导入了这个文件:
tdbloader --graph=http://linkedgeodata.org --loc=$bsdStore $lgdData"supermarkets.ttl"
我现在正尝试像这样查询这个模型:
PREFIX lgd: <http://linkedgeodata.org/ontology/>
PREFIX wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX geo: <http://geovocab.org/geometry#>
PREFIX gis: <http://www.opengis.net/ont/geosparql#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supermarket ?label ?latitude ?longitude ?points
FROM <http://linkedgeodata.org>
WHERE {
?supermarket a lgd:Supermarket .
?supermarket ?p ?o .
OPTIONAL {
?supermarket rdfs:label ?label .
?supermarket geo:geometry ?geo .
?geo gis:asWKT ?points .
?supermarket wgs:lat ?latitude .
?supermarket wgs:long ?longitude .
}
}
不幸的是,这将返回一个空结果集。如果我现在将 wgs 模式移动到单独的 OPTIONAL 中,我会得到正确的结果。
SELECT DISTINCT ?supermarket ?label ?latitude ?longitude ?points
FROM <http://linkedgeodata.org>
WHERE {
?supermarket a lgd:Supermarket .
?supermarket ?p ?o .
OPTIONAL {
?supermarket rdfs:label ?label .
?supermarket geo:geometry ?geo .
?geo gis:asWKT ?points .
}
OPTIONAL {
?supermarket wgs:lat ?latitude .
?supermarket wgs:long ?longitude .
}
}
这是 Jena 中的错误还是我的查询错误?干杯,丹尼尔