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/::lonwork in “out center mode.”geocodeAreais 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).
