route lengths, edit saved routs, ui visibility toggle

This commit is contained in:
Evan Scamehorn
2025-12-02 13:34:39 -06:00
parent c5437de834
commit 852016088b
7 changed files with 146 additions and 65 deletions

View File

@@ -214,6 +214,7 @@ for u, v, k in G.edges(keys=True):
"v": int(v),
"oneway": bool(row.get("oneway", False)),
"points": parse_line_points(row.geometry, center_x, center_y),
"length": round(float(row.geometry.length), 2),
}
)