From 68feddf3e81ce7f3a687d9edf077d67653c9d430 Mon Sep 17 00:00:00 2001 From: "s0wlz (Matthias Puchstein)" Date: Wed, 17 Dec 2025 01:49:11 +0100 Subject: [PATCH] Use cjio export glb syntax --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57068a0..20d74c9 100644 --- a/README.md +++ b/README.md @@ -101,15 +101,15 @@ LoD2 CityGML tiles can be converted to GLB per tile while preserving roof/wall s ```bash for f in work/cityjson_tri/*.tri.city.json; do base="$(basename "$f" .tri.city.json)" - uv run cjio "$f" export --format glb "export_unity/buildings_glb/${base}.glb" + uv run cjio "$f" export glb "export_unity/buildings_glb/${base}.glb" done for f in work/cityjson_split/*.roof.city.json; do base="$(basename "$f" .roof.city.json)" - uv run cjio "$f" export --format glb "export_unity/buildings_glb_split/${base}_roof.glb" + uv run cjio "$f" export glb "export_unity/buildings_glb_split/${base}_roof.glb" done for f in work/cityjson_split/*.wall.city.json; do base="$(basename "$f" .wall.city.json)" - uv run cjio "$f" export --format glb "export_unity/buildings_glb_split/${base}_wall.glb" + uv run cjio "$f" export glb "export_unity/buildings_glb_split/${base}_wall.glb" done ``` 5. Confirm intermediates/GLBs exist: `uv run python scripts/verify_pipeline.py --mode both`