This commit is contained in:
Andras Schmelczer 2026-07-12 15:03:33 +01:00
parent 982e0cc89c
commit cfaf58dfba
44 changed files with 793 additions and 201 deletions

View file

@ -192,7 +192,7 @@ def build_fragments(args: argparse.Namespace) -> list[Fragment]:
print("Phase 3: Processing OAs")
print("=" * 60)
# Build work list precompute which OAs are single vs multi-postcode
# Build work list: precompute which OAs are single vs multi-postcode
oa_codes_with_data = sorted(set(oa_geoms.keys()) & set(uprn_offsets.keys()))
skipped_no_uprn = len(oa_geoms) - len(oa_codes_with_data)
skipped_no_boundary = len(uprn_offsets) - len(oa_codes_with_data)
@ -275,7 +275,7 @@ def main() -> None:
if use_cache and fragments_cache_is_fresh(fragments_cache, fragment_inputs):
print("=" * 60)
print("Phase 3 cache hit loading fragments (skipping Phases 1-3)")
print("Phase 3 cache hit: loading fragments (skipping Phases 1-3)")
print("=" * 60)
all_fragments = load_fragments(fragments_cache)
print(