diff --git a/export_heightmaps.py b/export_heightmaps.py deleted file mode 100644 index 8d74118..0000000 --- a/export_heightmaps.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env python3 -"""Compatibility wrapper: run heightmap 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", "heightmap"])) diff --git a/export_ortho_tiles.py b/export_ortho_tiles.py deleted file mode 100644 index 0cd7996..0000000 --- a/export_ortho_tiles.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/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"]))