├── .gitignore ├── CONTRIBUTING.md ├── LargeNetworkAnalysisTools.ParallelCalculateLocations.pyt.xml ├── LargeNetworkAnalysisTools.SolveLargeAnalysisWithKnownPairs.pyt.xml ├── LargeNetworkAnalysisTools.SolveLargeODCostMatrix.pyt.xml ├── LargeNetworkAnalysisTools.pyt ├── README.md ├── conference-slides ├── DevSummit2020_SolvingLargeTransportationAnalysisProblems.pdf ├── DevSummit2021_SolvingLargeTransportationAnalysisProblems.pdf └── DevSummit2022_SolvingLargeTransportationAnalysisProblems.pdf ├── helpers.py ├── images ├── CalculateLocations_SQL_1.png ├── CalculateLocations_SQL_2.png ├── ParallelCalculateLocations_Dialog.png ├── ParallelCalculateLocations_SQL.png ├── SolveLargeAnalysisWithKnownODPairs_ManyToMany_Dialog.png ├── SolveLargeAnalysisWithKnownODPairs_OneToOne_Dialog.png └── SolveLargeODCostMatrix_Dialog.png ├── license.txt ├── od_config.py ├── parallel_calculate_locations.py ├── parallel_odcm.py ├── parallel_route_pairs.py ├── rt_config.py ├── solve_large_odcm.py ├── solve_large_route_pair_analysis.py └── unittests ├── __init__.py ├── input_data_helper.py ├── portal_credentials.py ├── test_ParallelCalculateLocations_tool.py ├── test_SolveLargeAnalysisWithKnownPairs_tool.py ├── test_SolveLargeODCostMatrix_tool.py ├── test_helpers.py ├── test_parallel_calculate_locations.py ├── test_parallel_odcm.py ├── test_parallel_route_pairs.py ├── test_solve_large_odcm.py ├── test_solve_large_route_pair_analysis.py └── unittests_README.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LargeNetworkAnalysisTools.ParallelCalculateLocations.pyt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/LargeNetworkAnalysisTools.ParallelCalculateLocations.pyt.xml -------------------------------------------------------------------------------- /LargeNetworkAnalysisTools.SolveLargeAnalysisWithKnownPairs.pyt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/LargeNetworkAnalysisTools.SolveLargeAnalysisWithKnownPairs.pyt.xml -------------------------------------------------------------------------------- /LargeNetworkAnalysisTools.SolveLargeODCostMatrix.pyt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/LargeNetworkAnalysisTools.SolveLargeODCostMatrix.pyt.xml -------------------------------------------------------------------------------- /LargeNetworkAnalysisTools.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/LargeNetworkAnalysisTools.pyt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/README.md -------------------------------------------------------------------------------- /conference-slides/DevSummit2020_SolvingLargeTransportationAnalysisProblems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/conference-slides/DevSummit2020_SolvingLargeTransportationAnalysisProblems.pdf -------------------------------------------------------------------------------- /conference-slides/DevSummit2021_SolvingLargeTransportationAnalysisProblems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/conference-slides/DevSummit2021_SolvingLargeTransportationAnalysisProblems.pdf -------------------------------------------------------------------------------- /conference-slides/DevSummit2022_SolvingLargeTransportationAnalysisProblems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/conference-slides/DevSummit2022_SolvingLargeTransportationAnalysisProblems.pdf -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/helpers.py -------------------------------------------------------------------------------- /images/CalculateLocations_SQL_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/images/CalculateLocations_SQL_1.png -------------------------------------------------------------------------------- /images/CalculateLocations_SQL_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/images/CalculateLocations_SQL_2.png -------------------------------------------------------------------------------- /images/ParallelCalculateLocations_Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/images/ParallelCalculateLocations_Dialog.png -------------------------------------------------------------------------------- /images/ParallelCalculateLocations_SQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/images/ParallelCalculateLocations_SQL.png -------------------------------------------------------------------------------- /images/SolveLargeAnalysisWithKnownODPairs_ManyToMany_Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/images/SolveLargeAnalysisWithKnownODPairs_ManyToMany_Dialog.png -------------------------------------------------------------------------------- /images/SolveLargeAnalysisWithKnownODPairs_OneToOne_Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/images/SolveLargeAnalysisWithKnownODPairs_OneToOne_Dialog.png -------------------------------------------------------------------------------- /images/SolveLargeODCostMatrix_Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/images/SolveLargeODCostMatrix_Dialog.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/license.txt -------------------------------------------------------------------------------- /od_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/od_config.py -------------------------------------------------------------------------------- /parallel_calculate_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/parallel_calculate_locations.py -------------------------------------------------------------------------------- /parallel_odcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/parallel_odcm.py -------------------------------------------------------------------------------- /parallel_route_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/parallel_route_pairs.py -------------------------------------------------------------------------------- /rt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/rt_config.py -------------------------------------------------------------------------------- /solve_large_odcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/solve_large_odcm.py -------------------------------------------------------------------------------- /solve_large_route_pair_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/solve_large_route_pair_analysis.py -------------------------------------------------------------------------------- /unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unittests/input_data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/input_data_helper.py -------------------------------------------------------------------------------- /unittests/portal_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/portal_credentials.py -------------------------------------------------------------------------------- /unittests/test_ParallelCalculateLocations_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_ParallelCalculateLocations_tool.py -------------------------------------------------------------------------------- /unittests/test_SolveLargeAnalysisWithKnownPairs_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_SolveLargeAnalysisWithKnownPairs_tool.py -------------------------------------------------------------------------------- /unittests/test_SolveLargeODCostMatrix_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_SolveLargeODCostMatrix_tool.py -------------------------------------------------------------------------------- /unittests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_helpers.py -------------------------------------------------------------------------------- /unittests/test_parallel_calculate_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_parallel_calculate_locations.py -------------------------------------------------------------------------------- /unittests/test_parallel_odcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_parallel_odcm.py -------------------------------------------------------------------------------- /unittests/test_parallel_route_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_parallel_route_pairs.py -------------------------------------------------------------------------------- /unittests/test_solve_large_odcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_solve_large_odcm.py -------------------------------------------------------------------------------- /unittests/test_solve_large_route_pair_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/test_solve_large_route_pair_analysis.py -------------------------------------------------------------------------------- /unittests/unittests_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/large-network-analysis-tools/HEAD/unittests/unittests_README.txt --------------------------------------------------------------------------------