├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── LICENSE ├── Pipfile ├── README.md ├── Untitled Diagram.drawio ├── docs ├── Example - Known stops.ipynb └── source │ ├── examples │ └── plot_aequilibrae_example.py │ └── index.md ├── example.ipynb ├── example_MPO_Data.py ├── mapmatcher ├── __init__.py ├── example_data │ └── traces_nauru.csv ├── examples.py ├── graph_builder.py ├── interpolate_ts.py ├── linebearing.py ├── map_matcher.py ├── network.py ├── parameters.py ├── stop_finder.py ├── trip.py └── utils.py ├── old ├── example.py ├── example_ATRI.py ├── example_data.7z └── example_data_generic_gps_data.csv ├── pyproject.toml └── tests ├── __init__.py ├── data ├── trace_all_fields.csv └── traces.csv ├── test_mapmatcher.py ├── test_stop_finder.py ├── test_trip.py └── test_trip_map_match.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/README.md -------------------------------------------------------------------------------- /Untitled Diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/Untitled Diagram.drawio -------------------------------------------------------------------------------- /docs/Example - Known stops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/docs/Example - Known stops.ipynb -------------------------------------------------------------------------------- /docs/source/examples/plot_aequilibrae_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/docs/source/examples/plot_aequilibrae_example.py -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/example.ipynb -------------------------------------------------------------------------------- /example_MPO_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/example_MPO_Data.py -------------------------------------------------------------------------------- /mapmatcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/__init__.py -------------------------------------------------------------------------------- /mapmatcher/example_data/traces_nauru.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/example_data/traces_nauru.csv -------------------------------------------------------------------------------- /mapmatcher/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/examples.py -------------------------------------------------------------------------------- /mapmatcher/graph_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/graph_builder.py -------------------------------------------------------------------------------- /mapmatcher/interpolate_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/interpolate_ts.py -------------------------------------------------------------------------------- /mapmatcher/linebearing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/linebearing.py -------------------------------------------------------------------------------- /mapmatcher/map_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/map_matcher.py -------------------------------------------------------------------------------- /mapmatcher/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/network.py -------------------------------------------------------------------------------- /mapmatcher/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/parameters.py -------------------------------------------------------------------------------- /mapmatcher/stop_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/stop_finder.py -------------------------------------------------------------------------------- /mapmatcher/trip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/trip.py -------------------------------------------------------------------------------- /mapmatcher/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/mapmatcher/utils.py -------------------------------------------------------------------------------- /old/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/old/example.py -------------------------------------------------------------------------------- /old/example_ATRI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/old/example_ATRI.py -------------------------------------------------------------------------------- /old/example_data.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/old/example_data.7z -------------------------------------------------------------------------------- /old/example_data_generic_gps_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/old/example_data_generic_gps_data.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/trace_all_fields.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/tests/data/trace_all_fields.csv -------------------------------------------------------------------------------- /tests/data/traces.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/tests/data/traces.csv -------------------------------------------------------------------------------- /tests/test_mapmatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/tests/test_mapmatcher.py -------------------------------------------------------------------------------- /tests/test_stop_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/tests/test_stop_finder.py -------------------------------------------------------------------------------- /tests/test_trip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/tests/test_trip.py -------------------------------------------------------------------------------- /tests/test_trip_map_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocamargo/map_matching/HEAD/tests/test_trip_map_match.py --------------------------------------------------------------------------------