From cabb4a37e006bf5f8d8446723f0d81e9297eb775 Mon Sep 17 00:00:00 2001 From: Geert Folkertsma <49145302+GeertFolkertsma@users.noreply.github.com> Date: Wed, 11 Feb 2026 16:56:06 +0100 Subject: [PATCH] Update README.md fix: include proper projection for railways extension example --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 59d32aa8..e693c0f7 100644 --- a/README.md +++ b/README.md @@ -354,6 +354,7 @@ except: # Then plot before roads: if railways is not None and not railways.empty: + railways = railways.to_crs(g_proj.graph["crs"]) railways.plot(ax=ax, color=THEME['railway'], linewidth=0.5, zorder=2.5) ```