├── .coveragerc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── envs │ ├── 39-latest-conda-forge.yaml │ └── setup_postgres.sh └── workflows │ ├── CI-tests.yml │ ├── black.yml │ ├── publish_test_pypi.yml │ └── rstcheck.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.md ├── CONTRIBUTING.md ├── LICENSE ├── Pipfile ├── README.md ├── ROADMAP.md ├── asv.conf.json ├── benchmarks ├── ASV-BENCHMARKING.md ├── __init__.py └── preprocessing_benchmarks.py ├── docs ├── _static │ ├── example_locations.png │ ├── example_modal_split_geolife.png │ ├── example_positionfixes.png │ ├── example_staypoints.png │ ├── example_triplegs.png │ ├── trackintel_logo.png │ ├── trackintel_logo_squash.png │ ├── tripalgorithm.png │ └── tripalgorithm.svg ├── _templates │ └── layout.html ├── assets │ ├── hierarchy.png │ ├── locations_with_pfs.png │ ├── trackintel_logo.svg │ ├── tripalgorithm.graphml │ └── visualisation_editable.pptx ├── conf.py ├── environment.yml ├── index.rst ├── modules │ ├── analysis.rst │ ├── geogr.rst │ ├── io.rst │ ├── model.rst │ ├── preprocessing.rst │ └── visualization.rst └── tutorial.rst ├── environment-dev.yml ├── environment.yml ├── examples ├── README.md ├── Trackintel case study.ipynb ├── Trackintel_case_study.pdf ├── cache │ └── e897ab7e9047ab46dd3814fcc9a755fb2ed6e7ad.json ├── config.json ├── data │ ├── geolife_trajectory.csv │ ├── google_trajectory.csv │ ├── gpsies_trajectory.csv │ ├── pfs.csv │ ├── pfs_tutorial.geojson │ └── posmo_trajectory.csv ├── import_export_postgis.py ├── log │ └── .gitignore ├── out │ └── .gitignore ├── preprocess_trajectories.py ├── setup_example_database.py └── trackintel_basic_tutorial.ipynb ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── sql └── create_tables_pg.sql ├── tests ├── __init__.py ├── analysis │ ├── __init__.py │ ├── test_label.py │ ├── test_location_identification.py │ ├── test_metrics.py │ ├── test_modal_split.py │ └── test_tracking_quality.py ├── data │ ├── area │ │ └── tsinghua.geojson │ ├── geolife │ │ ├── 000 │ │ │ └── Trajectory │ │ │ │ └── 20081024020959.plt │ │ ├── geolife_staypoints.csv │ │ ├── geolife_staypoints_short.csv │ │ └── geolife_triplegs.csv │ ├── geolife_long │ │ ├── 000 │ │ │ └── Trajectory │ │ │ │ ├── 20081023025304.plt │ │ │ │ └── 20081024020959.plt │ │ ├── 001 │ │ │ └── Trajectory │ │ │ │ ├── 20081023055305.plt │ │ │ │ └── 20081023234104.plt │ │ ├── sp_tpls.csv │ │ ├── tours.csv │ │ └── trips.csv │ ├── geolife_long_10_MB │ │ ├── 000 │ │ │ └── Trajectory │ │ │ │ ├── 20081023025304.plt │ │ │ │ ├── 20081024020959.plt │ │ │ │ ├── 20081026134407.plt │ │ │ │ ├── 20081027115449.plt │ │ │ │ ├── 20081028003826.plt │ │ │ │ ├── 20081029092138.plt │ │ │ │ ├── 20081029093038.plt │ │ │ │ └── 20081103101336.plt │ │ ├── 001 │ │ │ └── Trajectory │ │ │ │ ├── 20081023055305.plt │ │ │ │ ├── 20081023234104.plt │ │ │ │ ├── 20081024234405.plt │ │ │ │ ├── 20081025231428.plt │ │ │ │ ├── 20081026081229.plt │ │ │ │ ├── 20081027111634.plt │ │ │ │ ├── 20081027233029.plt │ │ │ │ ├── 20081027235802.plt │ │ │ │ ├── 20081028102805.plt │ │ │ │ └── 20081028233053.plt │ │ ├── 002 │ │ │ └── Trajectory │ │ │ │ ├── 20081023124523.plt │ │ │ │ ├── 20081024000805.plt │ │ │ │ ├── 20081025010205.plt │ │ │ │ ├── 20081026024152.plt │ │ │ │ ├── 20081026233830.plt │ │ │ │ ├── 20081027103804.plt │ │ │ │ ├── 20081028002304.plt │ │ │ │ ├── 20081028102158.plt │ │ │ │ ├── 20081029001905.plt │ │ │ │ └── 20081030001234.plt │ │ ├── 003 │ │ │ └── Trajectory │ │ │ │ ├── 20081023175854.plt │ │ │ │ ├── 20081024020227.plt │ │ │ │ ├── 20081024192954.plt │ │ │ │ ├── 20081025182454.plt │ │ │ │ ├── 20081026043935.plt │ │ │ │ ├── 20081027041826.plt │ │ │ │ ├── 20081028040501.plt │ │ │ │ ├── 20081029040232.plt │ │ │ │ ├── 20081030014603.plt │ │ │ │ └── 20081031031627.plt │ │ ├── 004 │ │ │ └── Trajectory │ │ │ │ ├── 20081023175852.plt │ │ │ │ ├── 20081024015454.plt │ │ │ │ ├── 20081024092739.plt │ │ │ │ ├── 20081024155859.plt │ │ │ │ ├── 20081025045755.plt │ │ │ │ ├── 20081025182432.plt │ │ │ │ ├── 20081026064837.plt │ │ │ │ ├── 20081026184627.plt │ │ │ │ ├── 20081027054834.plt │ │ │ │ └── 20081027190939.plt │ │ ├── 005 │ │ │ └── Trajectory │ │ │ │ ├── 20081024041230.plt │ │ │ │ ├── 20081025041708.plt │ │ │ │ ├── 20081025140429.plt │ │ │ │ ├── 20081026094426.plt │ │ │ │ ├── 20081027092607.plt │ │ │ │ ├── 20081027225701.plt │ │ │ │ ├── 20081029012707.plt │ │ │ │ ├── 20081029093359.plt │ │ │ │ ├── 20081029184230.plt │ │ │ │ └── 20081030032432.plt │ │ ├── 006 │ │ │ └── Trajectory │ │ │ │ ├── 20081023065939.plt │ │ │ │ ├── 20081024104408.plt │ │ │ │ ├── 20081025045800.plt │ │ │ │ ├── 20081031041139.plt │ │ │ │ ├── 20081105070630.plt │ │ │ │ ├── 20081106055508.plt │ │ │ │ ├── 20081108000507.plt │ │ │ │ ├── 20081108081806.plt │ │ │ │ ├── 20081112001438.plt │ │ │ │ └── 20081113035731.plt │ │ ├── 007 │ │ │ └── Trajectory │ │ │ │ ├── 20081025142200.plt │ │ │ │ ├── 20081026021624.plt │ │ │ │ ├── 20081026160935.plt │ │ │ │ ├── 20081027005623.plt │ │ │ │ ├── 20081028002607.plt │ │ │ │ ├── 20081028161031.plt │ │ │ │ ├── 20081028161937.plt │ │ │ │ ├── 20081029003730.plt │ │ │ │ ├── 20081030094008.plt │ │ │ │ └── 20081030162003.plt │ │ ├── 008 │ │ │ └── Trajectory │ │ │ │ ├── 20081024114834.plt │ │ │ │ ├── 20081024132624.plt │ │ │ │ ├── 20081025041134.plt │ │ │ │ ├── 20081025225205.plt │ │ │ │ ├── 20081026055934.plt │ │ │ │ ├── 20081027015604.plt │ │ │ │ ├── 20081027132023.plt │ │ │ │ ├── 20081028102134.plt │ │ │ │ ├── 20081029042535.plt │ │ │ │ ├── 20081030051559.plt │ │ │ │ └── 20081101041635.plt │ │ ├── 009 │ │ │ └── Trajectory │ │ │ │ ├── 20081024101535.plt │ │ │ │ ├── 20081025043904.plt │ │ │ │ ├── 20081026044805.plt │ │ │ │ ├── 20081027000159.plt │ │ │ │ ├── 20081027113404.plt │ │ │ │ ├── 20081027121402.plt │ │ │ │ ├── 20081028002105.plt │ │ │ │ ├── 20081029001634.plt │ │ │ │ ├── 20081029104758.plt │ │ │ │ ├── 20081030000923.plt │ │ │ │ ├── 20081031102252.plt │ │ │ │ └── 20081101024405.plt │ │ └── 010 │ │ │ ├── Trajectory │ │ │ ├── 20070804033032.plt │ │ │ ├── 20070804155303.plt │ │ │ ├── 20070805070503.plt │ │ │ ├── 20070828171302.plt │ │ │ ├── 20070830203928.plt │ │ │ ├── 20070901022340.plt │ │ │ ├── 20070903095208.plt │ │ │ ├── 20070905163053.plt │ │ │ ├── 20070906204521.plt │ │ │ └── 20070907075003.plt │ │ │ └── labels.txt │ ├── geolife_modes │ │ ├── 178 │ │ │ └── Trajectory │ │ │ │ └── 20100312172608.plt │ │ ├── 010 │ │ │ ├── Trajectory │ │ │ │ ├── 20080330004134.plt │ │ │ │ ├── 20080330160039.plt │ │ │ │ ├── 20080331160008.plt │ │ │ │ └── 20080402060926.plt │ │ │ └── labels.txt │ │ └── 020 │ │ │ ├── Trajectory │ │ │ ├── 20111130020900.plt │ │ │ ├── 20111130151807.plt │ │ │ ├── 20111130152335.plt │ │ │ └── 20111201123535.plt │ │ │ └── labels.txt │ ├── gpx_data │ │ ├── track1.gpx │ │ └── track2.gpx │ ├── locations.csv │ ├── locations.geojson │ ├── locations_mod_columns.csv │ ├── positionfixes.csv │ ├── positionfixes.geojson │ ├── positionfixes_mod_columns.csv │ ├── sim1.csv │ ├── sim2.csv │ ├── staypoints.csv │ ├── staypoints.geojson │ ├── staypoints_mod_columns.csv │ ├── tours.csv │ ├── triplegs.csv │ ├── triplegs.geojson │ ├── triplegs_mod_columns.csv │ ├── triplegs_transport_mode_identification.csv │ ├── triplegs_with_too_many_points_test.csv │ ├── trips.csv │ ├── trips │ │ ├── sp_tpls_gaps.csv │ │ ├── staypoints_gaps.csv │ │ ├── triplegs_gaps.csv │ │ ├── trips.csv │ │ └── trips_gaps.csv │ └── trips_mod_columns.csv ├── examples │ ├── __init__.py │ ├── test_examples.py │ └── test_tutorial.py ├── geogr │ ├── __init__.py │ ├── test_distances.py │ └── test_filter.py ├── io │ ├── __init__.py │ ├── test_dataset_reader.py │ ├── test_file.py │ ├── test_from_geopandas.py │ ├── test_postgis.py │ └── test_util.py ├── model │ ├── __init__.py │ ├── test_locations.py │ ├── test_positionfixes.py │ ├── test_staypoints.py │ ├── test_tours.py │ ├── test_triplegs.py │ ├── test_trips.py │ └── test_util.py ├── preprocessing │ ├── __init__.py │ ├── test_positionfixes.py │ ├── test_staypoints.py │ ├── test_triplegs.py │ ├── test_trips.py │ └── test_util.py ├── test_core.py └── visualization │ ├── __init__.py │ └── test_plotting.py └── trackintel ├── __init__.py ├── __version__.py ├── analysis ├── __init__.py ├── labelling.py ├── location_identification.py ├── metrics.py ├── modal_split.py └── tracking_quality.py ├── core.py ├── geogr ├── __init__.py ├── distances.py └── filter.py ├── io ├── __init__.py ├── dataset_reader.py ├── file.py ├── from_geopandas.py ├── postgis.py └── util.py ├── model ├── __init__.py ├── locations.py ├── positionfixes.py ├── staypoints.py ├── tours.py ├── triplegs.py ├── trips.py └── util.py ├── preprocessing ├── __init__.py ├── positionfixes.py ├── staypoints.py ├── triplegs.py ├── trips.py └── util.py └── visualization ├── __init__.py └── plotting.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/envs/39-latest-conda-forge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.github/envs/39-latest-conda-forge.yaml -------------------------------------------------------------------------------- /.github/envs/setup_postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.github/envs/setup_postgres.sh -------------------------------------------------------------------------------- /.github/workflows/CI-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.github/workflows/CI-tests.yml -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/publish_test_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.github/workflows/publish_test_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/rstcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.github/workflows/rstcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /asv.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/asv.conf.json -------------------------------------------------------------------------------- /benchmarks/ASV-BENCHMARKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/benchmarks/ASV-BENCHMARKING.md -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/preprocessing_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/benchmarks/preprocessing_benchmarks.py -------------------------------------------------------------------------------- /docs/_static/example_locations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/example_locations.png -------------------------------------------------------------------------------- /docs/_static/example_modal_split_geolife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/example_modal_split_geolife.png -------------------------------------------------------------------------------- /docs/_static/example_positionfixes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/example_positionfixes.png -------------------------------------------------------------------------------- /docs/_static/example_staypoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/example_staypoints.png -------------------------------------------------------------------------------- /docs/_static/example_triplegs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/example_triplegs.png -------------------------------------------------------------------------------- /docs/_static/trackintel_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/trackintel_logo.png -------------------------------------------------------------------------------- /docs/_static/trackintel_logo_squash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/trackintel_logo_squash.png -------------------------------------------------------------------------------- /docs/_static/tripalgorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/tripalgorithm.png -------------------------------------------------------------------------------- /docs/_static/tripalgorithm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_static/tripalgorithm.svg -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/assets/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/assets/hierarchy.png -------------------------------------------------------------------------------- /docs/assets/locations_with_pfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/assets/locations_with_pfs.png -------------------------------------------------------------------------------- /docs/assets/trackintel_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/assets/trackintel_logo.svg -------------------------------------------------------------------------------- /docs/assets/tripalgorithm.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/assets/tripalgorithm.graphml -------------------------------------------------------------------------------- /docs/assets/visualisation_editable.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/assets/visualisation_editable.pptx -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/modules/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/modules/analysis.rst -------------------------------------------------------------------------------- /docs/modules/geogr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/modules/geogr.rst -------------------------------------------------------------------------------- /docs/modules/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/modules/io.rst -------------------------------------------------------------------------------- /docs/modules/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/modules/model.rst -------------------------------------------------------------------------------- /docs/modules/preprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/modules/preprocessing.rst -------------------------------------------------------------------------------- /docs/modules/visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/modules/visualization.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /environment-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/environment-dev.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/Trackintel case study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/Trackintel case study.ipynb -------------------------------------------------------------------------------- /examples/Trackintel_case_study.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/Trackintel_case_study.pdf -------------------------------------------------------------------------------- /examples/cache/e897ab7e9047ab46dd3814fcc9a755fb2ed6e7ad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/cache/e897ab7e9047ab46dd3814fcc9a755fb2ed6e7ad.json -------------------------------------------------------------------------------- /examples/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/data/geolife_trajectory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/data/geolife_trajectory.csv -------------------------------------------------------------------------------- /examples/data/google_trajectory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/data/google_trajectory.csv -------------------------------------------------------------------------------- /examples/data/gpsies_trajectory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/data/gpsies_trajectory.csv -------------------------------------------------------------------------------- /examples/data/pfs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/data/pfs.csv -------------------------------------------------------------------------------- /examples/data/pfs_tutorial.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/data/pfs_tutorial.geojson -------------------------------------------------------------------------------- /examples/data/posmo_trajectory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/data/posmo_trajectory.csv -------------------------------------------------------------------------------- /examples/import_export_postgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/import_export_postgis.py -------------------------------------------------------------------------------- /examples/log/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/log/.gitignore -------------------------------------------------------------------------------- /examples/out/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/out/.gitignore -------------------------------------------------------------------------------- /examples/preprocess_trajectories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/preprocess_trajectories.py -------------------------------------------------------------------------------- /examples/setup_example_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/setup_example_database.py -------------------------------------------------------------------------------- /examples/trackintel_basic_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/examples/trackintel_basic_tutorial.ipynb -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/setup.py -------------------------------------------------------------------------------- /sql/create_tables_pg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/sql/create_tables_pg.sql -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/analysis/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/analysis/test_label.py -------------------------------------------------------------------------------- /tests/analysis/test_location_identification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/analysis/test_location_identification.py -------------------------------------------------------------------------------- /tests/analysis/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/analysis/test_metrics.py -------------------------------------------------------------------------------- /tests/analysis/test_modal_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/analysis/test_modal_split.py -------------------------------------------------------------------------------- /tests/analysis/test_tracking_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/analysis/test_tracking_quality.py -------------------------------------------------------------------------------- /tests/data/area/tsinghua.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/area/tsinghua.geojson -------------------------------------------------------------------------------- /tests/data/geolife/000/Trajectory/20081024020959.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife/000/Trajectory/20081024020959.plt -------------------------------------------------------------------------------- /tests/data/geolife/geolife_staypoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife/geolife_staypoints.csv -------------------------------------------------------------------------------- /tests/data/geolife/geolife_staypoints_short.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife/geolife_staypoints_short.csv -------------------------------------------------------------------------------- /tests/data/geolife/geolife_triplegs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife/geolife_triplegs.csv -------------------------------------------------------------------------------- /tests/data/geolife_long/000/Trajectory/20081023025304.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long/000/Trajectory/20081023025304.plt -------------------------------------------------------------------------------- /tests/data/geolife_long/000/Trajectory/20081024020959.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long/000/Trajectory/20081024020959.plt -------------------------------------------------------------------------------- /tests/data/geolife_long/001/Trajectory/20081023055305.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long/001/Trajectory/20081023055305.plt -------------------------------------------------------------------------------- /tests/data/geolife_long/001/Trajectory/20081023234104.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long/001/Trajectory/20081023234104.plt -------------------------------------------------------------------------------- /tests/data/geolife_long/sp_tpls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long/sp_tpls.csv -------------------------------------------------------------------------------- /tests/data/geolife_long/tours.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long/tours.csv -------------------------------------------------------------------------------- /tests/data/geolife_long/trips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long/trips.csv -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081023025304.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081023025304.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081024020959.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081024020959.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081026134407.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081026134407.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081027115449.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081027115449.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081028003826.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081028003826.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081029092138.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081029092138.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081029093038.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081029093038.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/000/Trajectory/20081103101336.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/000/Trajectory/20081103101336.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081023055305.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081023055305.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081023234104.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081023234104.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081024234405.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081024234405.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081025231428.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081025231428.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081026081229.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081026081229.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081027111634.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081027111634.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081027233029.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081027233029.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081027235802.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081027235802.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081028102805.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081028102805.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/001/Trajectory/20081028233053.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/001/Trajectory/20081028233053.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081023124523.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081023124523.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081024000805.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081024000805.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081025010205.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081025010205.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081026024152.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081026024152.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081026233830.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081026233830.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081027103804.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081027103804.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081028002304.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081028002304.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081028102158.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081028102158.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081029001905.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081029001905.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/002/Trajectory/20081030001234.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/002/Trajectory/20081030001234.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081023175854.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081023175854.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081024020227.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081024020227.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081024192954.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081024192954.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081025182454.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081025182454.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081026043935.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081026043935.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081027041826.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081027041826.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081028040501.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081028040501.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081029040232.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081029040232.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081030014603.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081030014603.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/003/Trajectory/20081031031627.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/003/Trajectory/20081031031627.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081023175852.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081023175852.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081024015454.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081024015454.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081024092739.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081024092739.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081024155859.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081024155859.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081025045755.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081025045755.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081025182432.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081025182432.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081026064837.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081026064837.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081026184627.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081026184627.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081027054834.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081027054834.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/004/Trajectory/20081027190939.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/004/Trajectory/20081027190939.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081024041230.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081024041230.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081025041708.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081025041708.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081025140429.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081025140429.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081026094426.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081026094426.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081027092607.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081027092607.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081027225701.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081027225701.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081029012707.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081029012707.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081029093359.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081029093359.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081029184230.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081029184230.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/005/Trajectory/20081030032432.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/005/Trajectory/20081030032432.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081023065939.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081023065939.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081024104408.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081024104408.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081025045800.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081025045800.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081031041139.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081031041139.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081105070630.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081105070630.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081106055508.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081106055508.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081108000507.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081108000507.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081108081806.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081108081806.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081112001438.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081112001438.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/006/Trajectory/20081113035731.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/006/Trajectory/20081113035731.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081025142200.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081025142200.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081026021624.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081026021624.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081026160935.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081026160935.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081027005623.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081027005623.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081028002607.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081028002607.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081028161031.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081028161031.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081028161937.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081028161937.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081029003730.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081029003730.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081030094008.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081030094008.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/007/Trajectory/20081030162003.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/007/Trajectory/20081030162003.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081024114834.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081024114834.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081024132624.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081024132624.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081025041134.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081025041134.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081025225205.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081025225205.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081026055934.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081026055934.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081027015604.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081027015604.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081027132023.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081027132023.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081028102134.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081028102134.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081029042535.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081029042535.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081030051559.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081030051559.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/008/Trajectory/20081101041635.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/008/Trajectory/20081101041635.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081024101535.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081024101535.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081025043904.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081025043904.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081026044805.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081026044805.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081027000159.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081027000159.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081027113404.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081027113404.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081027121402.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081027121402.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081028002105.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081028002105.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081029001634.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081029001634.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081029104758.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081029104758.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081030000923.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081030000923.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081031102252.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081031102252.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/009/Trajectory/20081101024405.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/009/Trajectory/20081101024405.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070804033032.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070804033032.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070804155303.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070804155303.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070805070503.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070805070503.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070828171302.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070828171302.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070830203928.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070830203928.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070901022340.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070901022340.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070903095208.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070903095208.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070905163053.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070905163053.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070906204521.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070906204521.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/Trajectory/20070907075003.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/Trajectory/20070907075003.plt -------------------------------------------------------------------------------- /tests/data/geolife_long_10_MB/010/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_long_10_MB/010/labels.txt -------------------------------------------------------------------------------- /tests/data/geolife_modes/010/Trajectory/20080330004134.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/010/Trajectory/20080330004134.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/010/Trajectory/20080330160039.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/010/Trajectory/20080330160039.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/010/Trajectory/20080331160008.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/010/Trajectory/20080331160008.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/010/Trajectory/20080402060926.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/010/Trajectory/20080402060926.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/010/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/010/labels.txt -------------------------------------------------------------------------------- /tests/data/geolife_modes/020/Trajectory/20111130020900.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/020/Trajectory/20111130020900.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/020/Trajectory/20111130151807.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/020/Trajectory/20111130151807.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/020/Trajectory/20111130152335.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/020/Trajectory/20111130152335.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/020/Trajectory/20111201123535.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/020/Trajectory/20111201123535.plt -------------------------------------------------------------------------------- /tests/data/geolife_modes/020/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/020/labels.txt -------------------------------------------------------------------------------- /tests/data/geolife_modes/178/Trajectory/20100312172608.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/geolife_modes/178/Trajectory/20100312172608.plt -------------------------------------------------------------------------------- /tests/data/gpx_data/track1.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/gpx_data/track1.gpx -------------------------------------------------------------------------------- /tests/data/gpx_data/track2.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/gpx_data/track2.gpx -------------------------------------------------------------------------------- /tests/data/locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/locations.csv -------------------------------------------------------------------------------- /tests/data/locations.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/locations.geojson -------------------------------------------------------------------------------- /tests/data/locations_mod_columns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/locations_mod_columns.csv -------------------------------------------------------------------------------- /tests/data/positionfixes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/positionfixes.csv -------------------------------------------------------------------------------- /tests/data/positionfixes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/positionfixes.geojson -------------------------------------------------------------------------------- /tests/data/positionfixes_mod_columns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/positionfixes_mod_columns.csv -------------------------------------------------------------------------------- /tests/data/sim1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/sim1.csv -------------------------------------------------------------------------------- /tests/data/sim2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/sim2.csv -------------------------------------------------------------------------------- /tests/data/staypoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/staypoints.csv -------------------------------------------------------------------------------- /tests/data/staypoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/staypoints.geojson -------------------------------------------------------------------------------- /tests/data/staypoints_mod_columns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/staypoints_mod_columns.csv -------------------------------------------------------------------------------- /tests/data/tours.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/tours.csv -------------------------------------------------------------------------------- /tests/data/triplegs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/triplegs.csv -------------------------------------------------------------------------------- /tests/data/triplegs.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/triplegs.geojson -------------------------------------------------------------------------------- /tests/data/triplegs_mod_columns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/triplegs_mod_columns.csv -------------------------------------------------------------------------------- /tests/data/triplegs_transport_mode_identification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/triplegs_transport_mode_identification.csv -------------------------------------------------------------------------------- /tests/data/triplegs_with_too_many_points_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/triplegs_with_too_many_points_test.csv -------------------------------------------------------------------------------- /tests/data/trips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/trips.csv -------------------------------------------------------------------------------- /tests/data/trips/sp_tpls_gaps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/trips/sp_tpls_gaps.csv -------------------------------------------------------------------------------- /tests/data/trips/staypoints_gaps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/trips/staypoints_gaps.csv -------------------------------------------------------------------------------- /tests/data/trips/triplegs_gaps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/trips/triplegs_gaps.csv -------------------------------------------------------------------------------- /tests/data/trips/trips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/trips/trips.csv -------------------------------------------------------------------------------- /tests/data/trips/trips_gaps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/trips/trips_gaps.csv -------------------------------------------------------------------------------- /tests/data/trips_mod_columns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/data/trips_mod_columns.csv -------------------------------------------------------------------------------- /tests/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/examples/test_examples.py -------------------------------------------------------------------------------- /tests/examples/test_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/examples/test_tutorial.py -------------------------------------------------------------------------------- /tests/geogr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/geogr/test_distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/geogr/test_distances.py -------------------------------------------------------------------------------- /tests/geogr/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/geogr/test_filter.py -------------------------------------------------------------------------------- /tests/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/test_dataset_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/io/test_dataset_reader.py -------------------------------------------------------------------------------- /tests/io/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/io/test_file.py -------------------------------------------------------------------------------- /tests/io/test_from_geopandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/io/test_from_geopandas.py -------------------------------------------------------------------------------- /tests/io/test_postgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/io/test_postgis.py -------------------------------------------------------------------------------- /tests/io/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/io/test_util.py -------------------------------------------------------------------------------- /tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model/test_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/model/test_locations.py -------------------------------------------------------------------------------- /tests/model/test_positionfixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/model/test_positionfixes.py -------------------------------------------------------------------------------- /tests/model/test_staypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/model/test_staypoints.py -------------------------------------------------------------------------------- /tests/model/test_tours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/model/test_tours.py -------------------------------------------------------------------------------- /tests/model/test_triplegs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/model/test_triplegs.py -------------------------------------------------------------------------------- /tests/model/test_trips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/model/test_trips.py -------------------------------------------------------------------------------- /tests/model/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/model/test_util.py -------------------------------------------------------------------------------- /tests/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/preprocessing/test_positionfixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/preprocessing/test_positionfixes.py -------------------------------------------------------------------------------- /tests/preprocessing/test_staypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/preprocessing/test_staypoints.py -------------------------------------------------------------------------------- /tests/preprocessing/test_triplegs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/preprocessing/test_triplegs.py -------------------------------------------------------------------------------- /tests/preprocessing/test_trips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/preprocessing/test_trips.py -------------------------------------------------------------------------------- /tests/preprocessing/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/preprocessing/test_util.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/visualization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/visualization/test_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/tests/visualization/test_plotting.py -------------------------------------------------------------------------------- /trackintel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/__init__.py -------------------------------------------------------------------------------- /trackintel/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/__version__.py -------------------------------------------------------------------------------- /trackintel/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/analysis/__init__.py -------------------------------------------------------------------------------- /trackintel/analysis/labelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/analysis/labelling.py -------------------------------------------------------------------------------- /trackintel/analysis/location_identification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/analysis/location_identification.py -------------------------------------------------------------------------------- /trackintel/analysis/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/analysis/metrics.py -------------------------------------------------------------------------------- /trackintel/analysis/modal_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/analysis/modal_split.py -------------------------------------------------------------------------------- /trackintel/analysis/tracking_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/analysis/tracking_quality.py -------------------------------------------------------------------------------- /trackintel/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/core.py -------------------------------------------------------------------------------- /trackintel/geogr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/geogr/__init__.py -------------------------------------------------------------------------------- /trackintel/geogr/distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/geogr/distances.py -------------------------------------------------------------------------------- /trackintel/geogr/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/geogr/filter.py -------------------------------------------------------------------------------- /trackintel/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/io/__init__.py -------------------------------------------------------------------------------- /trackintel/io/dataset_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/io/dataset_reader.py -------------------------------------------------------------------------------- /trackintel/io/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/io/file.py -------------------------------------------------------------------------------- /trackintel/io/from_geopandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/io/from_geopandas.py -------------------------------------------------------------------------------- /trackintel/io/postgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/io/postgis.py -------------------------------------------------------------------------------- /trackintel/io/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/io/util.py -------------------------------------------------------------------------------- /trackintel/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trackintel/model/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/model/locations.py -------------------------------------------------------------------------------- /trackintel/model/positionfixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/model/positionfixes.py -------------------------------------------------------------------------------- /trackintel/model/staypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/model/staypoints.py -------------------------------------------------------------------------------- /trackintel/model/tours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/model/tours.py -------------------------------------------------------------------------------- /trackintel/model/triplegs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/model/triplegs.py -------------------------------------------------------------------------------- /trackintel/model/trips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/model/trips.py -------------------------------------------------------------------------------- /trackintel/model/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/model/util.py -------------------------------------------------------------------------------- /trackintel/preprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/preprocessing/__init__.py -------------------------------------------------------------------------------- /trackintel/preprocessing/positionfixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/preprocessing/positionfixes.py -------------------------------------------------------------------------------- /trackintel/preprocessing/staypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/preprocessing/staypoints.py -------------------------------------------------------------------------------- /trackintel/preprocessing/triplegs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/preprocessing/triplegs.py -------------------------------------------------------------------------------- /trackintel/preprocessing/trips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/preprocessing/trips.py -------------------------------------------------------------------------------- /trackintel/preprocessing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/preprocessing/util.py -------------------------------------------------------------------------------- /trackintel/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/visualization/__init__.py -------------------------------------------------------------------------------- /trackintel/visualization/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mie-lab/trackintel/HEAD/trackintel/visualization/plotting.py --------------------------------------------------------------------------------