缺少 geojson 的数据

Missing data for geojson

我在 overpass-turbo

中进行了以下查询
[out:json][timeout:25];
// gather results
(
  // query part for: “amenity=hospital”
  node["amenity"="hospital"]({{bbox}});
  way["amenity"="hospital"]({{bbox}});
  relation["amenity"="hospital"]({{bbox}});
);
// print results
out body;
>;
out center;
>;

但不幸的是,我没有从提取的 geojson 数据(overpass-turbo)中将所有节点显示到 geojson.io 中。

有什么想法可以帮助我获取所有数据吗?

此致

看起来像http://geojson.io does show nodes but not polygons (= OSM ways). This could be a limitation of http://geojson.io or of the overpass turbo export,我对GeoJSON文件格式不是很熟悉。

您可以使用 geometry attribute out center; 告诉立交桥将道路转换为节点。尝试以下查询:

[out:json][timeout:25];
// gather results
(
  // query part for: “amenity=hospital”
  node["amenity"="hospital"]({{bbox}});
  way["amenity"="hospital"]({{bbox}});
  relation["amenity"="hospital"]({{bbox}});
);
// print results
out center;
>;