Files
GeoData/export_ortho_tiles.py

12 lines
276 B
Python

#!/usr/bin/env python3
"""Compatibility wrapper: run orthophoto export via geodata_to_unity."""
from __future__ import annotations
import sys
from geodata_to_unity import main as geodata_main
if __name__ == "__main__":
sys.exit(geodata_main(["--export", "textures"]))