From 000036450db621068d89b542fe23b913c068d769 Mon Sep 17 00:00:00 2001 From: Kartios Date: Tue, 11 Aug 2026 18:30:26 -0700 Subject: [PATCH] Keep corridor weather at corridor scale --- src/main.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 9aa8667..fb0b5f5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -819,8 +819,12 @@ async function mountCity(id: string) { * immediately with `null`, which is climatology, and the observation * replaces it when it lands. */ + // Weather observations are metro-scoped for the same reason live aircraft + // are: one honest station cannot describe a 600 km corridor. California uses + // the local climatology model; the detailed SF and SoCal boards keep their + // live observations. weatherWatch = - access.can.liveEnvironment && access.feeds?.weather + id !== "california" && access.can.liveEnvironment && access.feeds?.weather ? tera.watchWeather(entry.city.center, () => { updateSun(); renderSource();