我正在尝试使用 RDFLIB Python 执行 Geosparql 查询……但我得到空结果……RDFLIB Python 是否支持 Geosparql 查询?请就此向我提出建议。下面是我存储三元组和查询执行的代码。
from rdflib import Graph, Literal, URIRef, Namespace, RDFS
from rdflib.plugins.stores import sparqlstore
g1 = Graph()
g1.bind("geo", GEO)
x = URIRef("x:")
example = Namespace("http://example.org/#")
g1.add((x, GEO["asWKT"], Literal("LINESTRING (0 0, 0 10)", datatype=GEO.wktLiteral)))
g1.serialize(format="turtle").decode("utf-8")
qres = g1.query(
"""SELECT *
WHERE {
?s ?p ?o FILTER (geo:sfEquals(?o, "LINESTRING (0 0, 0 5, 0 10)"^^geo:wktLiteral)) .
}""")
print(g1.serialize(format="turtle").decode("utf-8"))
for row in qres:
print(row)
上面的代码总是返回空结果。