From 4696a46c8c6a3e4b79116032f7bd08f6f0de429b Mon Sep 17 00:00:00 2001 From: yarnom Date: Mon, 29 Sep 2025 15:42:52 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E6=AD=A6=E6=B1=89?= =?UTF-8?q?=E6=B1=9F=E5=A4=8F=E5=8C=BA=E9=9B=B7=E8=BE=BE=E7=AB=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/radar/scheduler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/radar/scheduler.go b/internal/radar/scheduler.go index f3be7af..b0ead47 100644 --- a/internal/radar/scheduler.go +++ b/internal/radar/scheduler.go @@ -364,13 +364,13 @@ func runTilesFromNMC(ctx context.Context, opts Options) error { dateStr := local.Format("20060102") hh := local.Format("15") mm := local.Format("04") - // Prepare tile list: primary (opts or default Nanning) + Guangzhou (7/40/104) + // Prepare tile list: primary (opts or default Nanning) + Guangzhou (7/40/104) + Wuhan (7/42/104) z, y, x := opts.Z, opts.Y, opts.X if z == 0 && y == 0 && x == 0 { z, y, x = 7, 40, 102 } type tcoord struct{ z, y, x int } - tiles := []tcoord{{z, y, x}, {7, 40, 104}} + tiles := []tcoord{{z, y, x}, {7, 40, 104}, {7, 42, 104}} // de-duplicate if same seen := map[string]bool{} for _, tc := range tiles {