Library for simple routing on OSM data
Project description
# pyroutelib3
A continuation of [pyroutelib2](https://github.com/gaulinmp/pyroutelib2).
Routing on OSM data in Python 3.
OSM Data tiles is stored in `tilescache/`
## Usage
```python
from pyroutelib3 import Router # Import the router
router = Router("<transport mode>") # Initialise it
start = router.data.findNode(lat, lon) # Find start and end nodes
end = router.data.findNode(lat, lon)
status, route = router.doRoute(start, end) # Find the route - a list of OSM nodes
if status == 'success':
routeLatLons = list(map(router.nodeLatLon, route)) # Get actual route coordinates
```
**Transport Modes**: car, cycle, foot, horse, tram, train
**Statuses**: success, no_route, no_such_node, gave_up
##### Offline Routing
If you want to use pyroutelib3 offline or on custom .osm file, you just need to add a second argument to Router:
Path to the specific osm file,
```python
from pyroutelib3 import Router
router = Router("<transport mode>", "<path-to-.osm-file>")
# Continue on doing like in the example above
```
## Todo
- [x] Porting to python3
- [x] Making pyroutelib a package
- [x] Custom transport types (todo documentation)
- [x] Handling the access key
- [ ] Turn restrictions
- [x] Offline routers (load only local osm file)
## License
pyroutelib3 is distributed under GNU GPL v3.
Copyright 2007, Oliver White
Modifications: Copyright 2017, Mikolaj Kuranowski -
Based on https://github.com/gaulinmp/pyroutelib2
pyroutelib3 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
pyroutelib3 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with pyroutelib3. If not, see <http://www.gnu.org/licenses/>.
A continuation of [pyroutelib2](https://github.com/gaulinmp/pyroutelib2).
Routing on OSM data in Python 3.
OSM Data tiles is stored in `tilescache/`
## Usage
```python
from pyroutelib3 import Router # Import the router
router = Router("<transport mode>") # Initialise it
start = router.data.findNode(lat, lon) # Find start and end nodes
end = router.data.findNode(lat, lon)
status, route = router.doRoute(start, end) # Find the route - a list of OSM nodes
if status == 'success':
routeLatLons = list(map(router.nodeLatLon, route)) # Get actual route coordinates
```
**Transport Modes**: car, cycle, foot, horse, tram, train
**Statuses**: success, no_route, no_such_node, gave_up
##### Offline Routing
If you want to use pyroutelib3 offline or on custom .osm file, you just need to add a second argument to Router:
Path to the specific osm file,
```python
from pyroutelib3 import Router
router = Router("<transport mode>", "<path-to-.osm-file>")
# Continue on doing like in the example above
```
## Todo
- [x] Porting to python3
- [x] Making pyroutelib a package
- [x] Custom transport types (todo documentation)
- [x] Handling the access key
- [ ] Turn restrictions
- [x] Offline routers (load only local osm file)
## License
pyroutelib3 is distributed under GNU GPL v3.
Copyright 2007, Oliver White
Modifications: Copyright 2017, Mikolaj Kuranowski -
Based on https://github.com/gaulinmp/pyroutelib2
pyroutelib3 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
pyroutelib3 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with pyroutelib3. If not, see <http://www.gnu.org/licenses/>.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyroutelib3-0.7.tar.gz
(7.9 kB
view details)
File details
Details for the file pyroutelib3-0.7.tar.gz
.
File metadata
- Download URL: pyroutelib3-0.7.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c4f918010c37f926131955622f6e4ac73db1c0d248ff0f496b2ac393911a722 |
|
MD5 | c8a74c499830e0d6f824170dac60a3f1 |
|
BLAKE2b-256 | 2a8927db21ee19dfa4bed97e630c5112cf531e4d552520f6e1bbf558f9001d03 |