Handle citygml-tools directory outputs and doc cjio paths

This commit is contained in:
2025-12-17 01:38:53 +01:00
parent 7e2067bb0d
commit e83b182000
3 changed files with 41 additions and 5 deletions

View File

@@ -83,7 +83,8 @@ LoD2 CityGML tiles can be converted to GLB per tile while preserving roof/wall s
```bash
for f in work/cityjson/*.city.json; do
base="$(basename "$f" .city.json)"
uv run cjio "$f" upgrade triangulate vertices_clean \
input_json="$f/$base.json" # citygml-tools writes a .json inside the .city.json folder
uv run cjio "$input_json" upgrade triangulate vertices_clean \
save "work/cityjson_tri/${base}.tri.city.json"
done
```