请求周围的建筑物和区域osm android

时间:2015-03-23 20:54:38

标签: android openstreetmap overpass-api

我想从Android应用程序执行OSM Overpass Turbo API或Overpass API的请求,这样我就可以使用JSON获取周围的建筑物和区域。

类似的东西 http://overpass-turbo.eu/,其中包含以下查询:

[out:json][timeout:25];
// gather results
(
  // query part for: “building”
  way["building"](37.98350674557998,23.72600823640823,37.98552989685638,23.728837966918945);
  relation["building"](37.98350674557998,23.72600823640823,37.98552989685638,23.728837966918945);
);
// print results
out body;
>;
out skel qt;

问题是我需要geojson中的结果,如下面的结果,但我找不到任何给出以下结果的查询。

{
  "type": "FeatureCollection",
  "generator": "overpass-turbo",
  "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.",
  "timestamp": "2015-03-23T20:41:02Z",
  "features": [
    {
      "type": "Feature",
      "id": "relation/2604192",
      "properties": {
        "@id": "relation/2604192",
        "building": "yes",
        "type": "multipolygon"
      },
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              23.7319885,
              37.9752441
            ],
            [
              23.7319787,
              37.9751612
            ],
            [
              23.7319494,
              37.9751641
            ],
            [
              23.7319372,
              37.9748376
            ],
            [
              23.7319702,
              37.9748318
            ],
          ]
        ]
      }
    },

我只获得带节点的结果,但不获得几何结果。

{
  "type": "way",
  "id": 25107859,
  "nodes": [
    2373953582,
    2373953586,
    2373953592,
    2373953599,
    2373953597,
    2373953636,
    2373953633,
    2373953626,
    273319309,
    2373953582
  ],
  "tags": {
    "building": "yes"
  }
},

经过一些有用的评论(谢谢scai)后,我发现没有自动查询立交桥turbo。因此,我搜索了立交桥api,我发现这个网站的查询建筑物,以跨越api导出到GeoJSON,但我不工作(虽然网站中的xml查询工作,但我需要json)。任何人都有一个有效的查询,所以我可以关注它吗?

http://inasafe.org/en/developer-docs/osm_building_downloads.html

http://overpass-api.de/api/interpreter?data=[out:json];(node[%23building%22=%22yes%22](-6.185440796831979,106.82374835014343,-6.178966266481431,106.83127999305725);way[%22building%22=%22yes%22](-6.185440796831979,106.82374835014343,-6.178966266481431,106.83127999305725);relation[%22building%22=%22yes%22](-6.185440796831979,106.82374835014343,-6.178966266481431,106.83127999305725););(._;%3E;);out%20body;

0 个答案:

没有答案