Metadata-Version: 2.4
Name: osm-importer
Version: 4.2.1
Summary: import OSM network for transport planning
License: MIT
License-File: LICENSE
Keywords: transport,OSM,simulation,fast,openstreetmap
Author: Simon Boivin
Author-email: sboivin@systra.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: geopandas
Requires-Dist: numba
Requires-Dist: numpy
Requires-Dist: pandas (<3.0)
Requires-Dist: requests
Requires-Dist: scipy
Project-URL: Repository, https://github.com/systragroup/osm-api
Description-Content-Type: text/markdown

## Quetzal OSM-api

Scripts to fetch and simplify OSM network.
1) remove cul-de-sac
2) split links to oneways
3) simplify links (removing deg 2 nodes)
4) process list in columns
5) add elevation and slopes


## Deploy



## Unit Tests

```bash
python tests/run_tests.py
``` 
for coverage report:

```bash
pip install coverage
``` 
```bash
coverage run -m unittest discover
```
```bash
coverage report
```
for a nicer report:
```bash
coverage html
```


