Skip to content

Instantly share code, notes, and snippets.

@NaoY-2501
Last active September 11, 2020 15:08
Show Gist options
  • Select an option

  • Save NaoY-2501/2ec996fb7d500487c6a10dd18b2af4d7 to your computer and use it in GitHub Desktop.

Select an option

Save NaoY-2501/2ec996fb7d500487c6a10dd18b2af4d7 to your computer and use it in GitHub Desktop.
overpass Queries

overpass-turbo

https://overpass-turbo.eu/#

道を抽出するクエリ(wip)

[out:json];
area["name"~"中野区"];
(way(area)[highway!~"footway"][building!~"house|residential"];);
(._;>;);
out;

refs.

送電線・変電所を抽出するクエリ

[out:json];
area["name"~"中野区|杉並区|豊島区|練馬区|東京都北区|東京都武蔵野市"];
(way(area)[operator="東京電力"][power~"line|minor_line|substation"];);
(._;>;);
out;
[out:json];
area["name"~"中野区|杉並区|豊島区|練馬区|東京都北区|東京都武蔵野市|新宿区|世田谷区|豊島区|渋谷区|荒川区|板橋区|足立区|三鷹市|江戸川区|台東区|墨田区|江東区|西東京市|川崎市|横浜市"];
(way(area)[operator="東京電力"][power~"line|minor_line|substation"];);
(._;>;);
out;

refs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment