├── .gitignore ├── LICENSE ├── README.md ├── doc ├── Makefile ├── compiling.md ├── custom.css ├── pbf2sqlite.md ├── routing.md ├── tagging.md ├── vaddr.png └── vgraph.png ├── src ├── Makefile ├── functions.c ├── get_args.c ├── graph.c ├── leaflet.c ├── main.c ├── opt_addr.sql ├── opt_graph_permit.sql ├── opt_rtree.sql ├── options.c ├── read_osm.c ├── routing.c └── show_data.c └── test ├── pbf2sqlite.py ├── route.py ├── run_test.sh ├── test1_read_data.sh ├── test2_compare_databases.py ├── test3_speed.sh └── test4_graph.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/compiling.md -------------------------------------------------------------------------------- /doc/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/custom.css -------------------------------------------------------------------------------- /doc/pbf2sqlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/pbf2sqlite.md -------------------------------------------------------------------------------- /doc/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/routing.md -------------------------------------------------------------------------------- /doc/tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/tagging.md -------------------------------------------------------------------------------- /doc/vaddr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/vaddr.png -------------------------------------------------------------------------------- /doc/vgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/doc/vgraph.png -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/functions.c -------------------------------------------------------------------------------- /src/get_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/get_args.c -------------------------------------------------------------------------------- /src/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/graph.c -------------------------------------------------------------------------------- /src/leaflet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/leaflet.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/main.c -------------------------------------------------------------------------------- /src/opt_addr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/opt_addr.sql -------------------------------------------------------------------------------- /src/opt_graph_permit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/opt_graph_permit.sql -------------------------------------------------------------------------------- /src/opt_rtree.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/opt_rtree.sql -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/options.c -------------------------------------------------------------------------------- /src/read_osm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/read_osm.c -------------------------------------------------------------------------------- /src/routing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/routing.c -------------------------------------------------------------------------------- /src/show_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/src/show_data.c -------------------------------------------------------------------------------- /test/pbf2sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/test/pbf2sqlite.py -------------------------------------------------------------------------------- /test/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/test/route.py -------------------------------------------------------------------------------- /test/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/test/run_test.sh -------------------------------------------------------------------------------- /test/test1_read_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/test/test1_read_data.sh -------------------------------------------------------------------------------- /test/test2_compare_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/test/test2_compare_databases.py -------------------------------------------------------------------------------- /test/test3_speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/test/test3_speed.sh -------------------------------------------------------------------------------- /test/test4_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmzoso/pbf2sqlite/HEAD/test/test4_graph.sh --------------------------------------------------------------------------------