Compare commits

..

6 Commits

Author SHA1 Message Date
Deeman
ead12c4552 fix(planner): prevent chart containers from overflowing on small screens
All checks were successful
CI / test (push) Successful in 54s
CI / tag (push) Successful in 2s
2026-03-05 18:27:33 +01:00
Deeman
c54eb50004 fix(planner): prevent chart containers from overflowing on small screens
Grid children default to min-width:auto, letting the Chart.js canvas
push the container wider than its grid track. Adding min-width:0 and
overflow:hidden constrains charts to their column width.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 18:27:27 +01:00
Deeman
5d7fcec17a chore: change GISCO extraction schedule from monthly to yearly
All checks were successful
CI / test (push) Successful in 54s
CI / tag (push) Successful in 3s
2026-03-05 17:50:19 +01:00
Deeman
f7faf7ab57 chore: change GISCO extraction schedule from monthly to yearly
NUTS2 boundaries rarely change; yearly (Jan 1) is sufficient.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 17:50:14 +01:00
Deeman
add5f8ddfa fix(extract): correct lc_lci_lev lcstruct filter value
All checks were successful
CI / test (push) Successful in 53s
CI / tag (push) Successful in 3s
2026-03-05 17:39:37 +01:00
Deeman
15ca316682 fix(extract): correct lc_lci_lev lcstruct filter value
D1_D2_A_HW doesn't exist in the API; use D1_D4_MD5 (total labour cost
= compensation + taxes - subsidies).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 17:32:49 +01:00
3 changed files with 5 additions and 3 deletions

View File

@@ -70,8 +70,8 @@ DATASETS: dict[str, dict] = {
}, },
"lc_lci_lev": { "lc_lci_lev": {
# Labour cost levels EUR/hour — NACE N (administrative/support services) # Labour cost levels EUR/hour — NACE N (administrative/support services)
# Stored in dim_countries for future staffed-scenario calculations. # D1_D4_MD5 = compensation of employees + taxes - subsidies (total labour cost)
"filters": {"lcstruct": "D1_D2_A_HW", "nace_r2": "N", "unit": "EUR"}, "filters": {"lcstruct": "D1_D4_MD5", "nace_r2": "N", "unit": "EUR"},
"geo_dim": "geo", "geo_dim": "geo",
"time_dim": "time", "time_dim": "time",
}, },

View File

@@ -70,5 +70,5 @@ description = "UK local authority population estimates from ONS"
[gisco] [gisco]
module = "padelnomics_extract.gisco" module = "padelnomics_extract.gisco"
schedule = "monthly" schedule = "0 0 1 1 *"
description = "EU geographic boundaries (NUTS2 polygons) from Eurostat GISCO" description = "EU geographic boundaries (NUTS2 polygons) from Eurostat GISCO"

View File

@@ -455,6 +455,8 @@
border-radius: 18px; border-radius: 18px;
padding: 1rem; padding: 1rem;
box-shadow: 0 1px 4px rgba(0,0,0,0.04); box-shadow: 0 1px 4px rgba(0,0,0,0.04);
min-width: 0;
overflow: hidden;
} }
.chart-container__label { .chart-container__label {
font-size: 11px; font-size: 11px;