├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.md ├── README.md ├── data └── smallterrain-blank.terrain ├── deps ├── CMakeLists.txt ├── commander.c ├── commander.h ├── commander.hpp └── concat.hpp ├── doc ├── Doxyfile └── README.md ├── docker ├── README.md └── build.sh ├── src ├── Bounds.hpp ├── CMakeLists.txt ├── CTBException.hpp ├── Coordinate.hpp ├── GDALTile.cpp ├── GDALTile.hpp ├── GDALTiler.cpp ├── GDALTiler.hpp ├── GlobalGeodetic.cpp ├── GlobalGeodetic.hpp ├── GlobalMercator.cpp ├── GlobalMercator.hpp ├── Grid.hpp ├── GridIterator.hpp ├── RasterIterator.hpp ├── RasterTiler.hpp ├── TerrainIterator.hpp ├── TerrainTile.cpp ├── TerrainTile.hpp ├── TerrainTiler.cpp ├── TerrainTiler.hpp ├── Tile.hpp ├── TileCoordinate.hpp ├── TilerIterator.hpp ├── config.hpp.in ├── ctb.hpp └── types.hpp └── tools ├── CMakeLists.txt ├── ctb-export.cpp ├── ctb-extents.cpp ├── ctb-info.cpp └── ctb-tile.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/README.md -------------------------------------------------------------------------------- /data/smallterrain-blank.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/data/smallterrain-blank.terrain -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/commander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/deps/commander.c -------------------------------------------------------------------------------- /deps/commander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/deps/commander.h -------------------------------------------------------------------------------- /deps/commander.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/deps/commander.hpp -------------------------------------------------------------------------------- /deps/concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/deps/concat.hpp -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/doc/README.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/docker/build.sh -------------------------------------------------------------------------------- /src/Bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/Bounds.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CTBException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/CTBException.hpp -------------------------------------------------------------------------------- /src/Coordinate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/Coordinate.hpp -------------------------------------------------------------------------------- /src/GDALTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GDALTile.cpp -------------------------------------------------------------------------------- /src/GDALTile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GDALTile.hpp -------------------------------------------------------------------------------- /src/GDALTiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GDALTiler.cpp -------------------------------------------------------------------------------- /src/GDALTiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GDALTiler.hpp -------------------------------------------------------------------------------- /src/GlobalGeodetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GlobalGeodetic.cpp -------------------------------------------------------------------------------- /src/GlobalGeodetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GlobalGeodetic.hpp -------------------------------------------------------------------------------- /src/GlobalMercator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GlobalMercator.cpp -------------------------------------------------------------------------------- /src/GlobalMercator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GlobalMercator.hpp -------------------------------------------------------------------------------- /src/Grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/Grid.hpp -------------------------------------------------------------------------------- /src/GridIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/GridIterator.hpp -------------------------------------------------------------------------------- /src/RasterIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/RasterIterator.hpp -------------------------------------------------------------------------------- /src/RasterTiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/RasterTiler.hpp -------------------------------------------------------------------------------- /src/TerrainIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/TerrainIterator.hpp -------------------------------------------------------------------------------- /src/TerrainTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/TerrainTile.cpp -------------------------------------------------------------------------------- /src/TerrainTile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/TerrainTile.hpp -------------------------------------------------------------------------------- /src/TerrainTiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/TerrainTiler.cpp -------------------------------------------------------------------------------- /src/TerrainTiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/TerrainTiler.hpp -------------------------------------------------------------------------------- /src/Tile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/Tile.hpp -------------------------------------------------------------------------------- /src/TileCoordinate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/TileCoordinate.hpp -------------------------------------------------------------------------------- /src/TilerIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/TilerIterator.hpp -------------------------------------------------------------------------------- /src/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/config.hpp.in -------------------------------------------------------------------------------- /src/ctb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/ctb.hpp -------------------------------------------------------------------------------- /src/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/src/types.hpp -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/ctb-export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/tools/ctb-export.cpp -------------------------------------------------------------------------------- /tools/ctb-extents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/tools/ctb-extents.cpp -------------------------------------------------------------------------------- /tools/ctb-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/tools/ctb-info.cpp -------------------------------------------------------------------------------- /tools/ctb-tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geo-data/cesium-terrain-builder/HEAD/tools/ctb-tile.cpp --------------------------------------------------------------------------------