Wifi Project Notes – Kenyon WiFi optimization

Step 1 – get mapping data:
Overpass Turbo query (recommended for first pass)

Paste this into Overpass Turbo and run it:

[out:csv(::type,::id,name,building,"addr:housenumber","addr:street",::lat,::lon; true; ",")][timeout:90];
{{geocodeArea:Kenyon College}}->.a;
(
  way["building"](area.a);
  relation["building"](area.a);
);
out center;

Notes:

  • out center; gives you one lat/lon per building geometry, and ::lat / ::lon work in “out center mode.”
  • geocodeArea is an Overpass Turbo convenience macro, not part of raw Overpass QL.

How to export CSV in Turbo:

Export → Data → CSV (or “raw data directly from Overpass API” depending on UI/version).

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top