This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:melowntech/vts-mapproxy
- Loading branch information
Showing
19 changed files
with
27 additions
and
22 deletions.
There are no files selected for viewing
Submodule cmake
updated
12 files
+3 −0 | Modules.Win32/FindProj.cmake | |
+5 −2 | Modules/FindProj.cmake | |
+1 −1 | README.md | |
+24 −4 | buildsys.cmake | |
+4 −4 | cmake.mk | |
+7 −0 | macros/buildsys.emscripten.cmake | |
+7 −0 | macros/buildsys.ios.cmake | |
+2 −2 | macros/buildsys.windowsstore.cmake | |
+20 −1 | macros/cuda.cmake | |
+86 −11 | macros/module.cmake | |
+1 −1 | macros/openmp.cmake | |
+11 −0 | macros/python.cmake |
Submodule gdal-drivers
updated
17 files
+26 −14 | gdal-drivers/CMakeLists.txt | |
+972 −0 | gdal-drivers/blender.cpp | |
+139 −0 | gdal-drivers/blender.hpp | |
+50 −0 | gdal-drivers/detail/extents.hpp | |
+61 −0 | gdal-drivers/detail/geotransform.hpp | |
+2 −0 | gdal-drivers/detail/mbtiles.cpp | |
+2 −1 | gdal-drivers/detail/mbtiles.hpp | |
+1 −1 | gdal-drivers/detail/mbtiles.nosqlite.cpp | |
+1 −1 | gdal-drivers/mask.cpp | |
+17 −37 | gdal-drivers/mvt.cpp | |
+19 −0 | gdal-drivers/python/CMakeLists.txt | |
+343 −0 | gdal-drivers/python/gdaldriversmodule.cpp | |
+38 −0 | gdal-drivers/python/gdaldriversmodule.hpp | |
+9 −1 | gdal-drivers/register.cpp | |
+0 −2 | gdal-drivers/register.hpp | |
+8 −33 | gdal-drivers/solid.cpp | |
+5 −5 | gdal-drivers/solid.hpp |
Submodule libdbglog
updated
9 files
+1 −1 | dbglog/CMakeLists.txt | |
+2 −1 | dbglog/config.hpp | |
+14 −3 | dbglog/dbglog.cpp | |
+9 −5 | dbglog/dbglog.hpp | |
+8 −2 | dbglog/detail/log_helpers.hpp | |
+2 −1 | dbglog/detail/logger.hpp | |
+3 −2 | dbglog/mask.cpp | |
+2 −1 | dbglog/sink.hpp | |
+2 −2 | dbglog/test/dbglog.cpp |
Submodule libgeo
updated
20 files
+31 −15 | geo/CMakeLists.txt | |
+31 −0 | geo/coordinates.hpp | |
+9 −1 | geo/csconvertor.cpp | |
+9 −1 | geo/csconvertor.hpp | |
+24 −15 | geo/csconvertorWithoutGdal.cpp | |
+45 −0 | geo/cv.hpp | |
+14 −3 | geo/detail/ovrdataset.new.cpp | |
+32 −0 | geo/detail/projapi.hpp | |
+93 −0 | geo/detail/project.6.cpp | |
+2 −2 | geo/detail/project.pre6.cpp | |
+58 −27 | geo/geodataset.cpp | |
+26 −3 | geo/geodataset.hpp | |
+38 −0 | geo/geotransform.cpp | |
+17 −0 | geo/geotransform.hpp | |
+1 −0 | geo/project.hpp | |
+1 −0 | geo/python/CMakeLists.txt | |
+29 −1 | geo/python/geomodule.cpp | |
+67 −7 | geo/srsfactors.cpp | |
+9 −0 | geo/tools/CMakeLists.txt | |
+130 −0 | geo/tools/geoinfo.cpp |
Submodule libgeometry
updated
39 files
Submodule libhttp
updated
5 files
+136 −82 | http/detail/client.cpp | |
+46 −24 | http/detail/curl.hpp | |
+1 −1 | http/detail/dnscache.hpp | |
+9 −8 | http/test/clienttest/CMakeLists.txt | |
+101 −35 | http/test/clienttest/main.cpp |
Submodule libimgproc
updated
44 files
Submodule libmath
updated
11 files
+1 −0 | .gitignore | |
+2 −1 | math/CMakeLists.txt | |
+33 −0 | math/boost_gil_all.hpp | |
+15 −1 | math/extent.hpp | |
+1 −0 | math/filters.hpp | |
+23 −3 | math/geometry.hpp | |
+154 −20 | math/geometry_core.hpp | |
+39 −2 | math/math.hpp | |
+13 −9 | math/python/mathmodule.cpp | |
+1 −1 | math/signal.hpp | |
+6 −0 | math/transform.hpp |
Submodule libpysupport
updated
25 files
+10 −4 | pysupport/CMakeLists.txt | |
+7 −12 | pysupport/argv.cpp | |
+212 −0 | pysupport/array.hpp | |
+67 −0 | pysupport/debugger-po.hpp | |
+77 −0 | pysupport/debugger.cpp | |
+104 −0 | pysupport/debugger.hpp | |
+1 −1 | pysupport/dump.hpp | |
+11 −5 | pysupport/formatexception.cpp | |
+1 −1 | pysupport/formatexception.hpp | |
+17 −8 | pysupport/import.cpp | |
+3 −1 | pysupport/import.hpp | |
+7 −2 | pysupport/import.py | |
+85 −0 | pysupport/initialize.cpp | |
+39 −0 | pysupport/initialize.hpp | |
+2 −2 | pysupport/iostreams.cpp | |
+13 −5 | pysupport/load.cpp | |
+23 −3 | pysupport/load.py | |
+21 −3 | pysupport/package.cpp | |
+104 −0 | pysupport/profiler-po.hpp | |
+173 −0 | pysupport/profiler.cpp | |
+136 −0 | pysupport/profiler.hpp | |
+1 −1 | pysupport/repr.cpp | |
+31 −18 | pysupport/systemexit.cpp | |
+69 −0 | pysupport/variant.hpp | |
+60 −0 | pysupport/vector.hpp |
Submodule libsemantic
updated
9 files
+56 −0 | semantic/io.cpp | |
+1 −0 | semantic/io.hpp | |
+4 −0 | semantic/mesh.hpp | |
+17 −3 | semantic/mesh/roof/circular.cpp | |
+17 −4 | semantic/mesh/roof/rectangular.cpp | |
+26 −9 | semantic/python/semanticmodule.cpp | |
+28 −6 | semantic/tools/semantic2obj.cpp | |
+1 −0 | semantic/world.cpp | |
+22 −0 | semantic/world.hpp |
Submodule libservice
updated
8 files
+1 −1 | service/CMakeLists.txt | |
+81 −0 | service/cmdline.cpp | |
+3 −0 | service/cmdline.hpp | |
+4 −4 | service/config.hpp | |
+1 −1 | service/customer/program.none.cpp | |
+2 −2 | service/customer/program.oss.cpp | |
+1 −1 | service/customer/program.seznam.cz.cpp | |
+3 −3 | service/program.cpp |
Submodule libutility
updated
43 files
Submodule vts-libs
updated
41 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters