[SPARQL/DBPedia]使用邮政编码进行查询并获取有关城市的一些信息

发布于 2024-10-09 03:05:36 字数 87 浏览 8 评论 0原文

嘿, 我想使用邮政编码进行查询以获取有关该城市的一些信息。 但它是如何运作的呢?

有人可以告诉我查询必须是什么样子吗?

格利兹羊

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉薄对峙 2024-10-16 03:05:36

我不确定 dbpedia 是否保存邮政编码数据。他们拥有的是所有可以进行地理定位的资源的地理坐标。

您可以使用类似于以下的查询来提取这些坐标:

PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> 
PREFIX onto: <http://dbpedia.org/ontology/> 
SELECT * WHERE {
?s a onto:Place .
?s geo:lat ?lat .
?s geo:long ?long .
} 
LIMIT 100

此查询将为您提供所有地点及其坐标。
您可以使用 Google MAP API 获取特定邮政编码的坐标,然后通过过滤 SPARQL 查询中的坐标来获取该邮政编码周围的位置。

PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> 
PREFIX onto: <http://dbpedia.org/ontology/> 
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

如果您多解释一下您的用例,我可能可以提供更好的帮助。

另一个提示......您也可以使用 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 :

PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> 
PREFIX onto: <http://dbpedia.org/ontology/> 
SELECT * WHERE {
?s a onto:Place .
?s geo:lat ?lat .
?s geo:long ?long .
} 
LIMIT 100

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.

PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> 
PREFIX onto: <http://dbpedia.org/ontology/> 
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

If you explain a bit more your use case I might be able to help better.

Another hint ... you could use also Geonames

祁梦 2024-10-16 03:05:36

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文