From 65330cf9e29ed94403022dbfd071afc627555805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sat, 11 Apr 2026 01:28:03 +0200 Subject: [PATCH] Switch Overpass endpoint to overpass.kumi.systems overpass.kumi.systems has higher rate limits than overpass-api.de. This is the same endpoint brouter-web uses as its default. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/planner/app/lib/overpass.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/planner/app/lib/overpass.ts b/apps/planner/app/lib/overpass.ts index ed72409..fdd86d7 100644 --- a/apps/planner/app/lib/overpass.ts +++ b/apps/planner/app/lib/overpass.ts @@ -1,6 +1,7 @@ import type { PoiCategory } from "./poi-categories.ts"; -const OVERPASS_ENDPOINT = "https://overpass-api.de/api/interpreter"; +// overpass.kumi.systems has higher rate limits than overpass-api.de +const OVERPASS_ENDPOINT = "https://overpass.kumi.systems/api/interpreter"; export interface Poi { id: number;