A tool for reading public transit routes from GTFS files and plotting them on a map
First, install the required dependencies
pip3 install -r requirements.txt
# OR
make depAfter this you can run
python3 plot.py --help
to see the available commands.
Linting and running tests:
make lint && make typecheck && make testAssuming the GTFS data has been exported to ./data/mta_subway:
python3 plot.py data/mta_subway --map-style carto-darkmatter --heigth 820 --width 1000 --zoom 10python3 plot.py data/hsl --map-style carto-darkmatter --filter-routes 31M2 31M1 --width 1000 --heigth 500 --zoom 10 --stopspython3 plot.py data/la_metro_rail --map-style carto-darkmatter --heigth 820 --width 1000 --zoom 10 --stopspython3 plot.py data/viarail --map-style carto-darkmatter --heigth 500 --width 1000 --zoom 3 --stopspython3 plot.py data/vr_passenger --map-style carto-darkmatter --heigth 900 --width 1000 --zoom 5 --stops



