[SPARQL/DBPedia]使用邮政编码进行查询并获取有关城市的一些信息
嘿, 我想使用邮政编码进行查询以获取有关该城市的一些信息。 但它是如何运作的呢?
有人可以告诉我查询必须是什么样子吗?
格利兹羊
Hey,
i want to make a query with a zip-code to get some informations about the City.
But how it works?
Can someone tell me how the query must look?
Greetz sheepy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定 dbpedia 是否保存邮政编码数据。他们拥有的是所有可以进行地理定位的资源的地理坐标。
您可以使用类似于以下的查询来提取这些坐标:
此查询将为您提供所有地点及其坐标。
您可以使用 Google MAP API 获取特定邮政编码的坐标,然后通过过滤 SPARQL 查询中的坐标来获取该邮政编码周围的位置。
如果您多解释一下您的用例,我可能可以提供更好的帮助。
另一个提示......您也可以使用 Geonames
I am not sure if dbpedia holds zip-code data. What they have are the geographical coordinates of all the resources that can be geographically positioned.
You could extract those coordinates with queries similar to :
This query would get for you all places with their coordinates.
You could use Google MAPs API to get the coordinates for certain zip-code and then get places around that zip-code by filtering the coordinates in the SPARQL query.
If you explain a bit more your use case I might be able to help better.
Another hint ... you could use also Geonames
FILTER 是否有可能必须包含在Where 括号{} 中?
选择 * 哪里 {
?sa 到:地点。
?s 地理:纬度 ?纬度 。
?s geo:long ?long 。
FILTER ( ?long > YOUR_LONG - radius && ?long < YOUR_LONG + radius &&
纬度> YOUR_LAT - 半径 && ?纬度<您的纬度 + 半径)
}
限制 100
Is it possbile that the FILTER has to be included into the Where brackets{}?
SELECT * WHERE {
?s a onto:Place .
?s geo:lat ?lat .
?s geo:long ?long .
FILTER ( ?long > YOUR_LONG - radius && ?long < YOUR_LONG + radius &&
lat > YOUR_LAT - radius && ?lat < YOUR_LAT + radius)
}
LIMIT 100