├── .gitignore ├── .pylintrc ├── .travis.yml ├── LICENSE ├── README.md ├── osm2gtfs ├── __init__.py ├── core │ ├── __init__.py │ ├── cache.py │ ├── configuration.py │ ├── creator_factory.py │ ├── elements.py │ ├── helper.py │ └── osm_connector.py ├── creators │ ├── __init__.py │ ├── agency_creator.py │ ├── br_florianopolis │ │ ├── __init__.py │ │ ├── config.json │ │ ├── routes_creator_br_florianopolis.py │ │ ├── stops_creator_br_florianopolis.py │ │ └── trips_creator_br_florianopolis.py │ ├── ci_abidjan │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agency_creator_ci_abidjan.py │ │ ├── config.json │ │ ├── routes_creator_ci_abidjan.py │ │ ├── schedule_creator_ci_abidjan.py │ │ └── trips_creator_ci_abidjan.py │ ├── cr_gam │ │ └── config.json │ ├── feed_info_creator.py │ ├── gh_accra │ │ ├── __init__.py │ │ ├── config.json │ │ ├── readme.md │ │ ├── routes_creator_gh_accra.py │ │ ├── schedule_creator_gh_accra.py │ │ ├── stops_creator_gh_accra.py │ │ └── trips_creator_gh_accra.py │ ├── ni_esteli │ │ └── config.json │ ├── ni_managua │ │ └── config.json │ ├── routes_creator.py │ ├── schedule_creator.py │ ├── stops_creator.py │ └── trips_creator.py ├── osm2gtfs.py └── tests │ ├── README.md │ ├── __init__.py │ ├── core │ ├── __init__.py │ └── tests_creator_factory.py │ └── creators │ ├── __init__.py │ ├── creators_tests.py │ ├── fixtures │ ├── br_florianopolis │ │ ├── br_florianopolis_gtfs.zip.ref │ │ ├── overpass-routes.xml │ │ ├── overpass-stops.xml │ │ ├── queries.txt │ │ └── timetable.json │ ├── ci_abidjan │ │ ├── ci_abidjan_gtfs.zip.ref │ │ ├── overpass-routes.xml │ │ ├── overpass-stops.xml │ │ └── queries.txt │ ├── cr_gam │ │ ├── cr_gam_gtfs.zip.ref │ │ ├── overpass-routes.xml │ │ ├── overpass-stops.xml │ │ ├── queries.txt │ │ └── timetable.json │ ├── gh_accra │ │ ├── gh_accra_gtfs.zip.ref │ │ ├── overpass-routes.xml │ │ ├── overpass-stops.xml │ │ └── queries.txt │ ├── ni_esteli │ │ ├── ni_esteli_gtfs.zip.ref │ │ ├── overpass-routes.xml │ │ ├── overpass-stops.xml │ │ ├── queries.txt │ │ └── timetable.json │ └── ni_managua │ │ ├── ni_managua_gtfs.zip.ref │ │ ├── overpass-routes.xml │ │ ├── overpass-stops.xml │ │ ├── queries.txt │ │ └── timetable.json │ ├── tests_br_florianopolis.py │ ├── tests_ci_abidjan.py │ ├── tests_cr_gam.py │ ├── tests_gh_accra.py │ ├── tests_ni_esteli.py │ └── tests_ni_managua.py ├── setup.py └── taginfo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/README.md -------------------------------------------------------------------------------- /osm2gtfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osm2gtfs/core/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | -------------------------------------------------------------------------------- /osm2gtfs/core/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/core/cache.py -------------------------------------------------------------------------------- /osm2gtfs/core/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/core/configuration.py -------------------------------------------------------------------------------- /osm2gtfs/core/creator_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/core/creator_factory.py -------------------------------------------------------------------------------- /osm2gtfs/core/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/core/elements.py -------------------------------------------------------------------------------- /osm2gtfs/core/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/core/helper.py -------------------------------------------------------------------------------- /osm2gtfs/core/osm_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/core/osm_connector.py -------------------------------------------------------------------------------- /osm2gtfs/creators/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | -------------------------------------------------------------------------------- /osm2gtfs/creators/agency_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/agency_creator.py -------------------------------------------------------------------------------- /osm2gtfs/creators/br_florianopolis/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | -------------------------------------------------------------------------------- /osm2gtfs/creators/br_florianopolis/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/br_florianopolis/config.json -------------------------------------------------------------------------------- /osm2gtfs/creators/br_florianopolis/routes_creator_br_florianopolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/br_florianopolis/routes_creator_br_florianopolis.py -------------------------------------------------------------------------------- /osm2gtfs/creators/br_florianopolis/stops_creator_br_florianopolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/br_florianopolis/stops_creator_br_florianopolis.py -------------------------------------------------------------------------------- /osm2gtfs/creators/br_florianopolis/trips_creator_br_florianopolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/br_florianopolis/trips_creator_br_florianopolis.py -------------------------------------------------------------------------------- /osm2gtfs/creators/ci_abidjan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ci_abidjan/README.md -------------------------------------------------------------------------------- /osm2gtfs/creators/ci_abidjan/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | -------------------------------------------------------------------------------- /osm2gtfs/creators/ci_abidjan/agency_creator_ci_abidjan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ci_abidjan/agency_creator_ci_abidjan.py -------------------------------------------------------------------------------- /osm2gtfs/creators/ci_abidjan/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ci_abidjan/config.json -------------------------------------------------------------------------------- /osm2gtfs/creators/ci_abidjan/routes_creator_ci_abidjan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ci_abidjan/routes_creator_ci_abidjan.py -------------------------------------------------------------------------------- /osm2gtfs/creators/ci_abidjan/schedule_creator_ci_abidjan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ci_abidjan/schedule_creator_ci_abidjan.py -------------------------------------------------------------------------------- /osm2gtfs/creators/ci_abidjan/trips_creator_ci_abidjan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ci_abidjan/trips_creator_ci_abidjan.py -------------------------------------------------------------------------------- /osm2gtfs/creators/cr_gam/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/cr_gam/config.json -------------------------------------------------------------------------------- /osm2gtfs/creators/feed_info_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/feed_info_creator.py -------------------------------------------------------------------------------- /osm2gtfs/creators/gh_accra/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | -------------------------------------------------------------------------------- /osm2gtfs/creators/gh_accra/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/gh_accra/config.json -------------------------------------------------------------------------------- /osm2gtfs/creators/gh_accra/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/gh_accra/readme.md -------------------------------------------------------------------------------- /osm2gtfs/creators/gh_accra/routes_creator_gh_accra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/gh_accra/routes_creator_gh_accra.py -------------------------------------------------------------------------------- /osm2gtfs/creators/gh_accra/schedule_creator_gh_accra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/gh_accra/schedule_creator_gh_accra.py -------------------------------------------------------------------------------- /osm2gtfs/creators/gh_accra/stops_creator_gh_accra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/gh_accra/stops_creator_gh_accra.py -------------------------------------------------------------------------------- /osm2gtfs/creators/gh_accra/trips_creator_gh_accra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/gh_accra/trips_creator_gh_accra.py -------------------------------------------------------------------------------- /osm2gtfs/creators/ni_esteli/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ni_esteli/config.json -------------------------------------------------------------------------------- /osm2gtfs/creators/ni_managua/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/ni_managua/config.json -------------------------------------------------------------------------------- /osm2gtfs/creators/routes_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/routes_creator.py -------------------------------------------------------------------------------- /osm2gtfs/creators/schedule_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/schedule_creator.py -------------------------------------------------------------------------------- /osm2gtfs/creators/stops_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/stops_creator.py -------------------------------------------------------------------------------- /osm2gtfs/creators/trips_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/creators/trips_creator.py -------------------------------------------------------------------------------- /osm2gtfs/osm2gtfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/osm2gtfs.py -------------------------------------------------------------------------------- /osm2gtfs/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/README.md -------------------------------------------------------------------------------- /osm2gtfs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osm2gtfs/tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osm2gtfs/tests/core/tests_creator_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/core/tests_creator_factory.py -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/creators_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/creators_tests.py -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/br_florianopolis/br_florianopolis_gtfs.zip.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/br_florianopolis/br_florianopolis_gtfs.zip.ref -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/br_florianopolis/overpass-routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/br_florianopolis/overpass-routes.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/br_florianopolis/overpass-stops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/br_florianopolis/overpass-stops.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/br_florianopolis/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/br_florianopolis/queries.txt -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/br_florianopolis/timetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/br_florianopolis/timetable.json -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ci_abidjan/ci_abidjan_gtfs.zip.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ci_abidjan/ci_abidjan_gtfs.zip.ref -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ci_abidjan/overpass-routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ci_abidjan/overpass-routes.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ci_abidjan/overpass-stops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ci_abidjan/overpass-stops.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ci_abidjan/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ci_abidjan/queries.txt -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/cr_gam/cr_gam_gtfs.zip.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/cr_gam/cr_gam_gtfs.zip.ref -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/cr_gam/overpass-routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/cr_gam/overpass-routes.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/cr_gam/overpass-stops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/cr_gam/overpass-stops.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/cr_gam/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/cr_gam/queries.txt -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/cr_gam/timetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/cr_gam/timetable.json -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/gh_accra/gh_accra_gtfs.zip.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/gh_accra/gh_accra_gtfs.zip.ref -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/gh_accra/overpass-routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/gh_accra/overpass-routes.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/gh_accra/overpass-stops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/gh_accra/overpass-stops.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/gh_accra/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/gh_accra/queries.txt -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_esteli/ni_esteli_gtfs.zip.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_esteli/ni_esteli_gtfs.zip.ref -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_esteli/overpass-routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_esteli/overpass-routes.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_esteli/overpass-stops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_esteli/overpass-stops.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_esteli/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_esteli/queries.txt -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_esteli/timetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_esteli/timetable.json -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_managua/ni_managua_gtfs.zip.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_managua/ni_managua_gtfs.zip.ref -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_managua/overpass-routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_managua/overpass-routes.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_managua/overpass-stops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_managua/overpass-stops.xml -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_managua/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_managua/queries.txt -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/fixtures/ni_managua/timetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/fixtures/ni_managua/timetable.json -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/tests_br_florianopolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/tests_br_florianopolis.py -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/tests_ci_abidjan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/tests_ci_abidjan.py -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/tests_cr_gam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/tests_cr_gam.py -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/tests_gh_accra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/tests_gh_accra.py -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/tests_ni_esteli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/tests_ni_esteli.py -------------------------------------------------------------------------------- /osm2gtfs/tests/creators/tests_ni_managua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/osm2gtfs/tests/creators/tests_ni_managua.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/setup.py -------------------------------------------------------------------------------- /taginfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grote/osm2gtfs/HEAD/taginfo.json --------------------------------------------------------------------------------