This research explores whether urban form—the physical layout and structure of built environments—can be used to predict car dependency across spatial areas in England. The analysis leverages machine learning to assess how much car ownership is influenced by:
- 🧍 Socio-demographic factors
- 💷 Socio-economic conditions
- 🏘️ Urban form characteristics (e.g., building alignment, street openness)
- Predict car dependency at the MSOA level using spatial and tabular data.
- Understand the contribution of urban form features to car ownership.
- Support urban planning and transport policy by identifying car-reducing built environments.
- What socio-demographic, economic, and environmental factors best explain car ownership?
- Can urban form features alone predict car dependency in absence of traditional variables?
- Do urban form features improve predictions when combined with other variables?
- Data sources include spatial building/street data and census statistics.
- Urban form metrics (68 variables) were generated using Voronoi tessellation with
momepy
. - Spatial cross-validation was performed using K-means clustering and K-fold evaluation.
## 📁 Project Structure
├── data/ │
├── msoa_buildings.geojson │
├── streets.geojson
│ └── census_data.csv
├── notebooks/ │
├── 01_data_processing.ipynb │
├── 02_feature_engineering.ipynb │
├── 03_model_training.ipynb
│ └── 04_visualization.ipynb ├── src/ │
├── preprocessing.py │
├── urban_form_features.py │
├── models.py
│ └── evaluation.py
├── results/
│ └── choropleth_maps/
├── README.md
└── requirements.txt
Model Type | Accuracy (Lasso) | Accuracy (Random Forest) |
---|---|---|
Traditional Features | 80% | 78% |
Urban Form Only | 81% | 76% |
All Features Combined | 81% | 80% |
- Urban form alone has strong predictive power (up to 76% accuracy).
- Top predictors include Age, Population Density, Cell Alignment, and Income.
- Areas with modernist, suburban, or rural urban form (e.g., misaligned buildings, sparse streets) show higher car dependency.
- Dense, walkable urban environments like central London show lower car use.
- Urban form can be a proxy indicator of transport behavior and planning quality.
This research offers insights for:
- Urban planners seeking to reduce forced car ownership.
- Policymakers developing sustainable transport infrastructure.
- Local governments identifying high-dependency areas for targeted investment.
- Data comes from multiple years, creating potential inconsistencies.
- Prediction accuracy may improve with time-aligned datasets.
- Separate analysis of London vs. other regions to understand unique urban traits.
- Explore ensemble models (e.g., combining Lasso and Random Forest).
- Investigate how urban form redesign can promote car-free lifestyles.