Skip to content

Regional household land values calibrated ∝ property wealth — need region-specific land-to-property ratios #357

@vahid-ahmadi

Description

@vahid-ahmadi

Summary

Regional household_land_value in the Enhanced FRS is effectively locked to each region's share of property wealth. This flattens the London land premium and overstates rural/commuter-belt land, because in reality the land share of property value varies strongly by region (roughly ~80-85% in London vs ~45-55% in the South West and parts of the North).

Where this is baked in

1. The PolicyEngine-UK formula uses a single national scalar (household_land_value.py):

property_wealth_intensity = (
    wealth.land.value.aggregate_household_land_value
    / wealth.property_wealth
)
return property_wealth * property_wealth_intensity + owned_land

property_wealth_intensity is a national scalar, so regional variation in household land comes only from regional variation in property_wealth.

2. The regional calibration targets are built from property wealth too (mhclg_regional_land.py):

df["property_wealth"] = df["dwellings"] * df["avg_house_price"]
total = df["property_wealth"].sum()
return dict(zip(df["region"], df["property_wealth"] / total))

Each region's share of the national household-land total is set proportional to its property wealth, so the loss-matrix targets cannot pull the reweighted FRS toward a higher London land intensity than the national average.

Why this matters

For any LVT analysis that cuts by region, the regional distribution of burden is biased:

  • London is understated as an LVT base.
  • South East / East of England / rural areas with high property wealth but lower land share are overstated.
  • Winners/losers by region under a council-tax → LVT swap are distorted in both directions.

Suggested direction

  1. Source regional land-to-property ratios from:
    • ONS National Balance Sheet regional non-financial assets / AN.211 splits where available.
    • Savills residential land value estimates by region.
    • VOA / MHCLG data on dwelling values vs reconstruction cost as a land-share proxy.
  2. Replace the proportionality assumption in _compute_regional_shares() with region-specific (land value / property wealth) ratios applied to regional property wealth.
  3. Companion change (separate issue in policyengine-uk): make wealth.land.value.aggregate_household_land_value and/or property_wealth_intensity region-aware so the formula can consume a regional parameter rather than a national scalar.

Context

Surfaced while modelling a council-tax → flat-rate LVT swap for the UK (uk-land-value-tax). Switching our own aggregation from land_value to household_land_value removes the corporate-land-via-shareholdings flattener, but the remaining regional bias is inherited from the upstream calibration described above.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions