Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #7505 from alexbruy/network-analysis
[processing] port shortest path algs to C++
- Loading branch information
Showing
with
1,646 additions
and 856 deletions.
- +1 −0 images/images.qrc
- +798 −0 images/themes/default/algorithms/mAlgorithmNetworkAnalysis.svg
- +0 −6 python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py
- +0 −295 python/plugins/processing/algs/qgis/ShortestPathLayerToPoint.py
- +0 −295 python/plugins/processing/algs/qgis/ShortestPathPointToLayer.py
- +0 −255 python/plugins/processing/algs/qgis/ShortestPathPointToPoint.py
- +5 −5 python/plugins/processing/tests/testdata/qgis_algorithm_tests.yaml
- +5 −0 src/analysis/CMakeLists.txt
- +166 −0 src/analysis/processing/qgsalgorithmnetworkanalysisbase.cpp
- +71 −0 src/analysis/processing/qgsalgorithmnetworkanalysisbase.h
- +158 −0 src/analysis/processing/qgsalgorithmshortestpathlayertopoint.cpp
- +53 −0 src/analysis/processing/qgsalgorithmshortestpathlayertopoint.h
- +156 −0 src/analysis/processing/qgsalgorithmshortestpathpointtolayer.cpp
- +53 −0 src/analysis/processing/qgsalgorithmshortestpathpointtolayer.h
- +121 −0 src/analysis/processing/qgsalgorithmshortestpathpointtopoint.cpp
- +53 −0 src/analysis/processing/qgsalgorithmshortestpathpointtopoint.h
- +6 −0 src/analysis/processing/qgsnativealgorithms.cpp
Oops, something went wrong.