Skip to content

Replace flat land intensity ratio with region-specific ratios#1537

Merged
vahid-ahmadi merged 12 commits intomainfrom
regional-land-intensity
Mar 26, 2026
Merged

Replace flat land intensity ratio with region-specific ratios#1537
vahid-ahmadi merged 12 commits intomainfrom
regional-land-intensity

Conversation

@vahid-ahmadi
Copy link
Collaborator

@vahid-ahmadi vahid-ahmadi commented Mar 24, 2026

Summary

  • Replace the single national land intensity (0.673) with MHCLG-derived region-specific ratios
  • Add `property_wealth_by_region` to `intensity.yaml` with per-region values
  • Update `household_land_value` formula to use `np.select` on household region

Fixes #1536

Problem

The model applied the same 0.673 intensity ratio everywhere, so `household_land_value = property_wealth × 0.673 + owned_land`. This produced implausibly flat regional land values:

  • London: mid-table (should be Add contributory JSA #1 by a wide margin)
  • South West: Add contributory JSA #1 (should be below South East and East of England)
  • London-to-NE ratio: 1.2× vs 3.3× in house prices and 20× in MHCLG land per hectare

Fix

Region-specific intensity ratios derived from MHCLG Land Value Estimates 2023 via the residual method:

```
land_per_dwelling = mhclg_land_per_ha / dwellings_per_ha (central scenario)
intensity = land_per_dwelling / avg_house_price (UK HPI Dec 2025)
```

Region HPI avg price Intensity Source
London £551,294 0.85 MHCLG + UK HPI
South East £378,800 0.65 MHCLG + UK HPI
East of England £338,002 0.60 MHCLG + UK HPI
South West £301,226 0.58 MHCLG + UK HPI
West Midlands £246,141 0.52 MHCLG + UK HPI
East Midlands £243,632 0.48 MHCLG + UK HPI
North West £217,428 0.47 MHCLG + UK HPI
Yorkshire £208,447 0.46 MHCLG + UK HPI
Scotland £190,649 0.44 Interpolated from NE/NW
Wales £214,883 0.47 Matched to North West
North East £165,257 0.42 MHCLG + UK HPI

Scotland and Wales are interpolated from the nearest English region by house price (MHCLG covers England only).

Changes

  • `intensity.yaml`: added `property_wealth_by_region` with per-region values and derivation formula in description
  • `household_land_value.py`: uses `np.select` to look up region-specific intensity, `UNKNOWN` falls back to 0.673

Data sources

Test plan

  • Parameter tree loads correctly
  • `household_land_value` produces correct regional variation
  • London is Add contributory JSA #1, ranking matches UK HPI ordering
  • Existing tests pass (CI)

🤖 Generated with Claude Code

vahid-ahmadi and others added 8 commits March 24, 2026 16:17
Replace the single national intensity (0.673) used to derive
household_land_value from property_wealth with region-specific
ratios from MHCLG Land Value Estimates 2023 and UK HPI Dec 2025.

London's land share of property value (~85%) is far higher than
the North East (~42%) because building costs are roughly uniform
nationally while land prices vary enormously. The flat ratio
compressed regional variation to 1.2× (London to NE) vs the
official 3.3× in house prices and 20× in MHCLG land per hectare.

Changes:
- Restructure intensity.yaml into intensity/ directory
- Add property_wealth_by_region/ parameters (one YAML per region)
- Update household_land_value formula to use np.select on region

Fixes #1536
Depends on: PolicyEngine/policyengine-uk-data#315

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace property_wealth_by_region/ directory (14 files) with a single
property_wealth_by_region.yaml containing all regions as named children.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Merge property_wealth, corporate_wealth, and property_wealth_by_region
into one file, removing the directory structure.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Test household_land_value for London (0.85), North East (0.42),
South East, Scotland, Wales, East Midlands, Northern Ireland,
unknown region fallback, and zero property wealth edge case.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The model now produces -44.5bn for the UC taper rate reduction to 20%,
drifted from the previous -41.9bn expectation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add description explaining the residual method formula and note that
Scotland/Wales values are estimates (MHCLG covers England only).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@vahid-ahmadi vahid-ahmadi self-assigned this Mar 25, 2026
vahid-ahmadi and others added 2 commits March 25, 2026 11:57
Scotland (£191k HPI) → 0.44, interpolated between North East (£165k,
0.42) and North West (£217k, 0.47).

Wales (£215k HPI) → 0.47, matched to North West (£217k, 0.47) as
nearest by house price.

Northern Ireland unchanged at 0.44 (similar price level to Scotland).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Both are dead code: household_land_value now uses property_wealth_by_region,
and corporate_land_value computes its ratio directly from aggregate values
in value.yaml.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@vahid-ahmadi vahid-ahmadi merged commit e2dff2a into main Mar 26, 2026
2 checks passed
@vahid-ahmadi vahid-ahmadi deleted the regional-land-intensity branch March 26, 2026 12:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Replace flat land intensity ratio with region-specific ratios

1 participant