RSS Amplifier

Milan's Data Science Insights · Aug 5, 2026

20 Urban Analytics Concepts Every Analyst Should Know

0
Sign in to vote or save

Milan Janosov · Milan's Data Science Insights

20 concepts that turn “where” into an answer

Everything in a city comes down to one question: where. These are the twenty concepts I keep returning to across both my urban analytics courses — the vocabulary that turns a messy pile of open data into a decision you can defend. Grouped from first principles up to modelling.

Also, if you want to get started in Python - check out my courses!

Foundations

  1. OpenStreetMap (OSM) — a free, community-mapped database of the world. Almost every analysis here starts with it, and every count from it is a lower bound: what someone mapped, not what exists.

  2. Tags (key–value) — how OSM describes things (amenity=cafe, building=yes). You query a city by asking for tags, not by pointing at a screen.

  3. Coordinate reference systems & reprojection — the rule that maps coordinates to real positions. Map in degrees, but reproject to metres before you measure anything — area in degrees is meaningless.

  4. Spatial join — attach or filter one layer by another’s geometry (points inside a boundary, buildings within a district). The workhorse operation of spatial data.

Acquiring & describing the city

  1. Building footprints — the outline where a building meets the ground. The densest layer in most cities, and the base everything else attaches to. A footprint is coverage, not floor space.

  2. The coverage screen — OSM tagging is uneven, so keep only the attributes actually populated across enough features. Build on real data, not empty columns.

  3. Street network as a graph — a city as nodes (intersections) and edges (segments). Once it’s a graph, movement, distance, and reachability become computable.

  4. Road hierarchy — primary, secondary, residential, living-street. The class structure that shapes where movement and pressure concentrate.

  5. Basemaps — real reference tiles under your data for context. The background changes; the geometry never moves.

  6. The urban profile — every layer (boundary, buildings, green, roads, amenities) composed into one readable map that redraws for any city by changing a place name.

Measuring & indexing

  1. Density normalization (KPIs) — divide counts by area so districts of different sizes compare fairly. 50 cafés per km² is a fact; 50 cafés is not.

  2. MinMax scaling — rescale different metrics onto one common range so they can be combined without one drowning out the rest.

  3. The livability index — fuse several normalized, weighted KPIs into a single score per area. A structured comparison under explicit assumptions, not a ground truth.

  4. Persona-based weighting — whose livability? A family, a student, and a retiree weight amenities differently. Make the values explicit instead of pretending the index is neutral.

Advanced methods

  1. DBSCAN clustering — find where activity genuinely concentrates without pre-setting how many clusters exist. How you locate agglomerations in a city.

  2. KMeans functional typology — group areas by what they do (their POI mix) into readable types. Turns raw points into “this is a nightlife cluster, that’s an office core.”

  3. POI feature engineering — convert scattered points of interest into structured, per-area features a model can use. The unglamorous step that makes everything downstream work.

  4. GTFS transit + walkability (pandana) — parse real transit schedules and compute network-distance access surfaces. What’s reachable, not just what’s near.

  5. Isochrones — everything reachable within 5, 10, 15 minutes, as spatial form. Turns travel time into a shape you can overlay and compare.

  6. NDVI from Sentinel-2 + spatial regression — measure greenery from satellite rather than guessing it, and model outcomes (like price per m²) while respecting that nearby places aren’t independent. The jump from describing a city to modelling it.

Which of these do you actually use in your work — and which do you wish you understood better? Both of these live as full, build-from-scratch courses on The New Science of Maps.

No posts

Read the original on milanjanosov.substack.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.