├── .gitignore ├── README.md ├── osm2od.py ├── requirements.txt └── road.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWGran/osm2opendrive/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWGran/osm2opendrive/HEAD/README.md -------------------------------------------------------------------------------- /osm2od.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWGran/osm2opendrive/HEAD/osm2od.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | argparse 3 | tqdm 4 | utm 5 | geopy 6 | -------------------------------------------------------------------------------- /road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWGran/osm2opendrive/HEAD/road.py --------------------------------------------------------------------------------