├── .gitattributes ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CMakeLists.txt ├── HOWTORELEASE.md ├── LICENSE ├── README.md ├── api ├── CMakeLists.txt ├── QgisTest.cpp ├── QgisTest2.cpp ├── QgisUntwine.cpp ├── QgisUntwine.hpp ├── QgisUntwine_unix.cpp ├── QgisUntwine_win.cpp └── README ├── bu ├── BuPyramid.cpp ├── BuPyramid.hpp ├── CopcSupport.cpp ├── CopcSupport.hpp ├── FileInfo.hpp ├── OctantInfo.cpp ├── OctantInfo.hpp ├── PointAccessor.hpp ├── Processor.cpp ├── Processor.hpp ├── PyramidManager.cpp ├── PyramidManager.hpp ├── Stats.cpp ├── Stats.hpp └── VoxelInfo.hpp ├── ci └── environment.yml ├── cmake ├── compiler_options.cmake ├── cpack.cmake ├── unix_compiler_options.cmake └── win32_compiler_options.cmake ├── epf ├── BufferCache.cpp ├── BufferCache.hpp ├── Cell.cpp ├── Cell.hpp ├── Epf.cpp ├── Epf.hpp ├── EpfTypes.hpp ├── FileProcessor.cpp ├── FileProcessor.hpp ├── Grid.cpp ├── Grid.hpp ├── Reprocessor.cpp ├── Reprocessor.hpp ├── Writer.cpp └── Writer.hpp ├── lazperf ├── Extractor.hpp ├── Inserter.hpp ├── charbuf.cpp ├── charbuf.hpp ├── coderbase.hpp ├── compressor.hpp ├── decoder.hpp ├── decompressor.hpp ├── detail │ ├── field_byte10.cpp │ ├── field_byte10.hpp │ ├── field_byte14.cpp │ ├── field_byte14.hpp │ ├── field_gpstime.hpp │ ├── field_gpstime10.cpp │ ├── field_gpstime10.hpp │ ├── field_nir14.cpp │ ├── field_nir14.hpp │ ├── field_point10.cpp │ ├── field_point10.hpp │ ├── field_point14.cpp │ ├── field_point14.hpp │ ├── field_rgb10.cpp │ ├── field_rgb10.hpp │ ├── field_rgb14.cpp │ ├── field_rgb14.hpp │ └── field_xyz.hpp ├── encoder.hpp ├── excepts.hpp ├── filestream.cpp ├── filestream.hpp ├── header.cpp ├── header.hpp ├── las.hpp ├── lazperf.cpp ├── lazperf.hpp ├── lazperf_base.hpp ├── lazperf_user_base.hpp ├── model.hpp ├── portable_endian.hpp ├── readers.cpp ├── readers.hpp ├── streams.hpp ├── utils.hpp ├── vlr.cpp ├── vlr.hpp ├── writers.cpp └── writers.hpp ├── prep ├── FilePrep.cpp └── FilePrep.hpp ├── test ├── CMakeLists.txt ├── Stats.hpp ├── TestConfig.hpp.in ├── Tests.cpp ├── data │ ├── autzen_trim.laz │ └── eb.laz └── gtest │ ├── CMakeLists.txt │ ├── README.md │ ├── cmake │ ├── Config.cmake.in │ ├── gtest.pc.in │ ├── gtest_main.pc.in │ ├── internal_utils.cmake │ └── libgtest.la.in │ ├── include │ └── gtest │ │ ├── gtest-assertion-result.h │ │ ├── gtest-death-test.h │ │ ├── gtest-matchers.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ ├── custom │ │ ├── README.md │ │ ├── gtest-port.h │ │ ├── gtest-printers.h │ │ └── gtest.h │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-param-util.h │ │ ├── gtest-port-arch.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ └── gtest-type-util.h │ ├── samples │ ├── prime_tables.h │ ├── sample1.cc │ ├── sample1.h │ ├── sample10_unittest.cc │ ├── sample1_unittest.cc │ ├── sample2.cc │ ├── sample2.h │ ├── sample2_unittest.cc │ ├── sample3-inl.h │ ├── sample3_unittest.cc │ ├── sample4.cc │ ├── sample4.h │ ├── sample4_unittest.cc │ ├── sample5_unittest.cc │ ├── sample6_unittest.cc │ ├── sample7_unittest.cc │ ├── sample8_unittest.cc │ └── sample9_unittest.cc │ └── src │ ├── gtest-all.cc │ ├── gtest-assertion-result.cc │ ├── gtest-death-test.cc │ ├── gtest-filepath.cc │ ├── gtest-internal-inl.h │ ├── gtest-matchers.cc │ ├── gtest-port.cc │ ├── gtest-printers.cc │ ├── gtest-test-part.cc │ ├── gtest-typed-test.cc │ ├── gtest.cc │ └── gtest_main.cc └── untwine ├── Common.hpp ├── Config.hpp.in ├── FatalError.hpp ├── FileDimInfo.hpp ├── FileInfo.hpp ├── GridKey.hpp ├── Point.hpp ├── ProgressWriter.cpp ├── ProgressWriter.hpp ├── ThreadPool.cpp ├── ThreadPool.hpp ├── Untwine.cpp ├── VoxelKey.hpp ├── generic ├── dirlist.hpp ├── mapfile.hpp ├── progress.hpp └── stringconv.hpp ├── mingw ├── dirlist.hpp ├── mapfile.hpp ├── progress.hpp └── stringconv.hpp ├── osx ├── dirlist.hpp ├── mapfile.hpp ├── progress.hpp └── stringconv.hpp ├── src └── api │ └── untwine.h └── windows ├── dirlist.hpp ├── mapfile.hpp ├── progress.hpp └── stringconv.hpp /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HOWTORELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/HOWTORELEASE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/README.md -------------------------------------------------------------------------------- /api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/CMakeLists.txt -------------------------------------------------------------------------------- /api/QgisTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/QgisTest.cpp -------------------------------------------------------------------------------- /api/QgisTest2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/QgisTest2.cpp -------------------------------------------------------------------------------- /api/QgisUntwine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/QgisUntwine.cpp -------------------------------------------------------------------------------- /api/QgisUntwine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/QgisUntwine.hpp -------------------------------------------------------------------------------- /api/QgisUntwine_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/QgisUntwine_unix.cpp -------------------------------------------------------------------------------- /api/QgisUntwine_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/QgisUntwine_win.cpp -------------------------------------------------------------------------------- /api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/api/README -------------------------------------------------------------------------------- /bu/BuPyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/BuPyramid.cpp -------------------------------------------------------------------------------- /bu/BuPyramid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/BuPyramid.hpp -------------------------------------------------------------------------------- /bu/CopcSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/CopcSupport.cpp -------------------------------------------------------------------------------- /bu/CopcSupport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/CopcSupport.hpp -------------------------------------------------------------------------------- /bu/FileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/FileInfo.hpp -------------------------------------------------------------------------------- /bu/OctantInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/OctantInfo.cpp -------------------------------------------------------------------------------- /bu/OctantInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/OctantInfo.hpp -------------------------------------------------------------------------------- /bu/PointAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/PointAccessor.hpp -------------------------------------------------------------------------------- /bu/Processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/Processor.cpp -------------------------------------------------------------------------------- /bu/Processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/Processor.hpp -------------------------------------------------------------------------------- /bu/PyramidManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/PyramidManager.cpp -------------------------------------------------------------------------------- /bu/PyramidManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/PyramidManager.hpp -------------------------------------------------------------------------------- /bu/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/Stats.cpp -------------------------------------------------------------------------------- /bu/Stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/Stats.hpp -------------------------------------------------------------------------------- /bu/VoxelInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/bu/VoxelInfo.hpp -------------------------------------------------------------------------------- /ci/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/ci/environment.yml -------------------------------------------------------------------------------- /cmake/compiler_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/cmake/compiler_options.cmake -------------------------------------------------------------------------------- /cmake/cpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/cmake/cpack.cmake -------------------------------------------------------------------------------- /cmake/unix_compiler_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/cmake/unix_compiler_options.cmake -------------------------------------------------------------------------------- /cmake/win32_compiler_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/cmake/win32_compiler_options.cmake -------------------------------------------------------------------------------- /epf/BufferCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/BufferCache.cpp -------------------------------------------------------------------------------- /epf/BufferCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/BufferCache.hpp -------------------------------------------------------------------------------- /epf/Cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Cell.cpp -------------------------------------------------------------------------------- /epf/Cell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Cell.hpp -------------------------------------------------------------------------------- /epf/Epf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Epf.cpp -------------------------------------------------------------------------------- /epf/Epf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Epf.hpp -------------------------------------------------------------------------------- /epf/EpfTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/EpfTypes.hpp -------------------------------------------------------------------------------- /epf/FileProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/FileProcessor.cpp -------------------------------------------------------------------------------- /epf/FileProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/FileProcessor.hpp -------------------------------------------------------------------------------- /epf/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Grid.cpp -------------------------------------------------------------------------------- /epf/Grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Grid.hpp -------------------------------------------------------------------------------- /epf/Reprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Reprocessor.cpp -------------------------------------------------------------------------------- /epf/Reprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Reprocessor.hpp -------------------------------------------------------------------------------- /epf/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Writer.cpp -------------------------------------------------------------------------------- /epf/Writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/epf/Writer.hpp -------------------------------------------------------------------------------- /lazperf/Extractor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/Extractor.hpp -------------------------------------------------------------------------------- /lazperf/Inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/Inserter.hpp -------------------------------------------------------------------------------- /lazperf/charbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/charbuf.cpp -------------------------------------------------------------------------------- /lazperf/charbuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/charbuf.hpp -------------------------------------------------------------------------------- /lazperf/coderbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/coderbase.hpp -------------------------------------------------------------------------------- /lazperf/compressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/compressor.hpp -------------------------------------------------------------------------------- /lazperf/decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/decoder.hpp -------------------------------------------------------------------------------- /lazperf/decompressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/decompressor.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_byte10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_byte10.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_byte10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_byte10.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_byte14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_byte14.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_byte14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_byte14.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_gpstime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_gpstime.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_gpstime10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_gpstime10.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_gpstime10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_gpstime10.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_nir14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_nir14.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_nir14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_nir14.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_point10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_point10.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_point10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_point10.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_point14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_point14.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_point14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_point14.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_rgb10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_rgb10.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_rgb10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_rgb10.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_rgb14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_rgb14.cpp -------------------------------------------------------------------------------- /lazperf/detail/field_rgb14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_rgb14.hpp -------------------------------------------------------------------------------- /lazperf/detail/field_xyz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/detail/field_xyz.hpp -------------------------------------------------------------------------------- /lazperf/encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/encoder.hpp -------------------------------------------------------------------------------- /lazperf/excepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/excepts.hpp -------------------------------------------------------------------------------- /lazperf/filestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/filestream.cpp -------------------------------------------------------------------------------- /lazperf/filestream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/filestream.hpp -------------------------------------------------------------------------------- /lazperf/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/header.cpp -------------------------------------------------------------------------------- /lazperf/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/header.hpp -------------------------------------------------------------------------------- /lazperf/las.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/las.hpp -------------------------------------------------------------------------------- /lazperf/lazperf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/lazperf.cpp -------------------------------------------------------------------------------- /lazperf/lazperf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/lazperf.hpp -------------------------------------------------------------------------------- /lazperf/lazperf_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/lazperf_base.hpp -------------------------------------------------------------------------------- /lazperf/lazperf_user_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/lazperf_user_base.hpp -------------------------------------------------------------------------------- /lazperf/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/model.hpp -------------------------------------------------------------------------------- /lazperf/portable_endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/portable_endian.hpp -------------------------------------------------------------------------------- /lazperf/readers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/readers.cpp -------------------------------------------------------------------------------- /lazperf/readers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/readers.hpp -------------------------------------------------------------------------------- /lazperf/streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/streams.hpp -------------------------------------------------------------------------------- /lazperf/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/utils.hpp -------------------------------------------------------------------------------- /lazperf/vlr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/vlr.cpp -------------------------------------------------------------------------------- /lazperf/vlr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/vlr.hpp -------------------------------------------------------------------------------- /lazperf/writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/writers.cpp -------------------------------------------------------------------------------- /lazperf/writers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/lazperf/writers.hpp -------------------------------------------------------------------------------- /prep/FilePrep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/prep/FilePrep.cpp -------------------------------------------------------------------------------- /prep/FilePrep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/prep/FilePrep.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/Stats.hpp -------------------------------------------------------------------------------- /test/TestConfig.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/TestConfig.hpp.in -------------------------------------------------------------------------------- /test/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/Tests.cpp -------------------------------------------------------------------------------- /test/data/autzen_trim.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/data/autzen_trim.laz -------------------------------------------------------------------------------- /test/data/eb.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/data/eb.laz -------------------------------------------------------------------------------- /test/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /test/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/README.md -------------------------------------------------------------------------------- /test/gtest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/cmake/Config.cmake.in -------------------------------------------------------------------------------- /test/gtest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /test/gtest/cmake/gtest_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/cmake/gtest_main.pc.in -------------------------------------------------------------------------------- /test/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /test/gtest/cmake/libgtest.la.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/cmake/libgtest.la.in -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-assertion-result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-assertion-result.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-matchers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/custom/README.md -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /test/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /test/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample1.h -------------------------------------------------------------------------------- /test/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample2.h -------------------------------------------------------------------------------- /test/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /test/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample4.h -------------------------------------------------------------------------------- /test/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /test/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-assertion-result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-assertion-result.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /test/gtest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/test/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /untwine/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/Common.hpp -------------------------------------------------------------------------------- /untwine/Config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/Config.hpp.in -------------------------------------------------------------------------------- /untwine/FatalError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/FatalError.hpp -------------------------------------------------------------------------------- /untwine/FileDimInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/FileDimInfo.hpp -------------------------------------------------------------------------------- /untwine/FileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/FileInfo.hpp -------------------------------------------------------------------------------- /untwine/GridKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/GridKey.hpp -------------------------------------------------------------------------------- /untwine/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/Point.hpp -------------------------------------------------------------------------------- /untwine/ProgressWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/ProgressWriter.cpp -------------------------------------------------------------------------------- /untwine/ProgressWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/ProgressWriter.hpp -------------------------------------------------------------------------------- /untwine/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/ThreadPool.cpp -------------------------------------------------------------------------------- /untwine/ThreadPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/ThreadPool.hpp -------------------------------------------------------------------------------- /untwine/Untwine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/Untwine.cpp -------------------------------------------------------------------------------- /untwine/VoxelKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/VoxelKey.hpp -------------------------------------------------------------------------------- /untwine/generic/dirlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/generic/dirlist.hpp -------------------------------------------------------------------------------- /untwine/generic/mapfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/generic/mapfile.hpp -------------------------------------------------------------------------------- /untwine/generic/progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/generic/progress.hpp -------------------------------------------------------------------------------- /untwine/generic/stringconv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/generic/stringconv.hpp -------------------------------------------------------------------------------- /untwine/mingw/dirlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/mingw/dirlist.hpp -------------------------------------------------------------------------------- /untwine/mingw/mapfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/mingw/mapfile.hpp -------------------------------------------------------------------------------- /untwine/mingw/progress.hpp: -------------------------------------------------------------------------------- 1 | #include "../generic/progress.hpp" 2 | -------------------------------------------------------------------------------- /untwine/mingw/stringconv.hpp: -------------------------------------------------------------------------------- 1 | #include "../generic/stringconv.hpp" 2 | -------------------------------------------------------------------------------- /untwine/osx/dirlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/osx/dirlist.hpp -------------------------------------------------------------------------------- /untwine/osx/mapfile.hpp: -------------------------------------------------------------------------------- 1 | #include "../generic/mapfile.hpp" 2 | -------------------------------------------------------------------------------- /untwine/osx/progress.hpp: -------------------------------------------------------------------------------- 1 | #include "../generic/progress.hpp" 2 | -------------------------------------------------------------------------------- /untwine/osx/stringconv.hpp: -------------------------------------------------------------------------------- 1 | #include "../generic/stringconv.hpp" 2 | -------------------------------------------------------------------------------- /untwine/src/api/untwine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/src/api/untwine.h -------------------------------------------------------------------------------- /untwine/windows/dirlist.hpp: -------------------------------------------------------------------------------- 1 | #include "../generic/dirlist.hpp" 2 | -------------------------------------------------------------------------------- /untwine/windows/mapfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/windows/mapfile.hpp -------------------------------------------------------------------------------- /untwine/windows/progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/windows/progress.hpp -------------------------------------------------------------------------------- /untwine/windows/stringconv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobuinc/untwine/HEAD/untwine/windows/stringconv.hpp --------------------------------------------------------------------------------