This commit is contained in:
Andras Schmelczer 2026-05-28 21:48:35 +01:00
parent 39ef5c6646
commit c995f12f8b
78 changed files with 4830 additions and 1619 deletions

View file

@ -6,6 +6,7 @@ export interface OverlayDefinition {
id: OverlayId;
label: string;
description: string;
detail: string;
}
export const OVERLAYS: OverlayDefinition[] = [
@ -13,16 +14,22 @@ export const OVERLAYS: OverlayDefinition[] = [
id: 'noise',
label: 'Noise',
description: 'High-resolution Defra Lden noise raster',
detail:
'Defra Strategic Noise Mapping Round 4 (2022), combining road, rail, and airport sources. Values are the EU-standard Lden metric (day-evening-night 24-hour weighted average), modelled on a 10m grid at 4m above ground. Brighter areas indicate higher modelled noise. Licensed under the Open Government Licence v3.0.',
},
{
id: 'crime-hotspots',
label: 'Crime hotspots',
description: 'Approximate police.uk street-crime heatmap',
detail:
'Client-side heatmap of street-level crimes published by police.uk over the most recent months. Police.uk coordinates are anonymised snap-to-grid points, not exact offence locations, so the heatmap should be read as an approximation of relative density rather than a precise map of incidents.',
},
{
id: 'trees-outside-woodlands',
label: 'Trees',
description: 'Trees Outside Woodland canopy polygons',
detail:
'Forest Research Trees Outside Woodland (TOW) v1 canopy polygons covering lone trees and groups of trees outside mapped woodland blocks. Useful for spotting tree-lined streets and green pockets that broader land-use layers miss. Polygon opacity scales with canopy area.',
},
];