English 中文(简体)
自由地点服务 - 街道名称
原标题:free location service - street by name

有谁知道有什么免费的地点服务可以让我在以色列城市找到街道?我可以使用任何java、.NET或javascript api。

最佳回答

"http://wiki.openstreetmap.org/wiki/Nominatim" rel="nofollow">OSM Nominatim 可能是你最好的赌注,如果你想 search 在城市的街道上。

http://wiki.openstreetmap.org/wiki/Nominatim_usage_policy” rel=“nofollow” >usage policy ;MapQuest也提供Nominatim服务 ,没有使用限制。

如果您重新计划大量查询, 则您最好在http://wiki.openstreetmap.org/wiki/Nominatim/Installation" rel=“nofollow” 上, 在您自己的服务器上安装nominatim < /a >, 但请注意, 这是小事, 数据集正在接近一个小字节 。

如果您在寻找街道上的list , 。最简单的办法是使用mapsomatic 来生成 CSV,但这是手动的,只有在需要一两个城市时才有效。

  1. download osmosis (and perhaps osmembrane which is a beta GUI for osmosis)
  2. download your country extract netherlands.osm.pbf (~430MB)
  3. create a polygon file parseable by osmois (see osm2polygon)
  4. run osmosis with the polygon and extract all ways that have the tags name=* and highway=residential
    1. way-key name,highway
    2. tag filter reject-node, reject-relation
问题回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签