我一直在尝试使用DBpedia和SPARQL来根据地理位置获取城市。
例如,http://dbpedia.org/page/Berlin
具有属性
geo:lat: 52.516666 (xsd:float)
geo:long: 13.383333 (xsd:float)
我希望根据位置和给定半径查询城市。 例如,我想找到距离纬度10公里的城市:51.5033640和长:-0.1276250
我知道这给了我城市 -
SELECT ?city WHERE { ?city rdf:type dbo:City }
- 但我不知道如何使用过滤器来过滤掉基于半径。有谁知道吗?
答案 0 :(得分:5)
使用Virtuoso地理空间功能bif:st_intersects
和bif:st_point
:
使用几何对象(伦敦坐标没有城市,更改为dbo:Place
以查看伦敦周围的其他对象):
SELECT * {
?city a dbo:City ;
geo:geometry ?geo
FILTER ( bif:st_intersects( ?geo, bif:st_point (-0.1276250, 51.5033640), 10))
}
或者使用lat / long:
SELECT * {
?city a dbo:City ;
geo:lat ?lat ;
geo:long ?long .
FILTER ( bif:st_intersects( bif:st_point (?long, ?lat), bif:st_point (-0.1276250, 51.5033640), 10))
}