OpenLR location dereferencer
Project description
openlr-dereferencer
This is a Python package for decoding OpenLR™ location references on target maps.
Dependencies
- Python ≥ 3.6
- geographiclib (PyPi package)
- openlr (PyPi package)
- For unittests, SQlite with spatialite extension is required
State
- ☑ Example map format
- ☑ Routing
- ☑ Candidate route rating
- ☑ Backtracking to get correct routes
- ☑ Decoding line locations
- ☑ Decoding 'point along line' locations
- ☐ Decoding 'POI with access point' locations
Structure
It is divided into the following submodules:
maps
Contains an abstract map class, which you may want to implement for your target map.
maps.wgs84
provides methods for reckoning with WGS84 coordinates.
example_sqlite_map
Implements the abstract map class for the example map format used in the unittests and examples
decoding
The actual logic for matching references onto a map.
This includes finding candidate lines and scoring them, and assembling a dereferenced location.
Usage
The decode(reference, mapreader)
function will take a location reference and return map objects.
Usage Example
First, implement the MapReader
class for your map. The example_sqlite_map
module is an implementation you may look at.
Second, construct a location reference. For instance, parse an OpenLR line location string:
from openlr import binary_decode
reference = binary_decode("CwmG8yVjzCq0Dfzr/gErRRs=")
Third, decode the reference on an instance of your map reader class:
from openlr_dereferencer import decode
real_location = decode(reference, mapreader)
real_location.lines # <- A list of map objects
Configuration
Candidates
The configuration value openlr_dereferencer.SEARCH_RADIUS
determines how far away from the LRP road candidates are searched.
The unit is meters, the default 100.
Scores
Every candidate line gets a score from 0
(bad) to 1
(perfect).
There are four scoring weight parameters:
- GEO_WEIGHT = 0.25
- FRC_WEIGHT = 0.25
- FOW_WEIGHT = 0.25
- BEAR_WEIGHT = 0.25
They determine how much influence a single aspect has on an overall candidate's score.
You may just change them before decoding:
from openlr_dereferencer.decoding import scoring
scoring.GEO_WEIGHT = 0.66
scoring.FRC_WEIGHT = 0.17
scoring.FOW_WEIGHT = 0.17
scoring.BEAR_WEIGHT = 0
Logging
openlr-dereferencer
logs all mapmatching decisions using the standard library logging
module.
Use it to turn on debugging:
import logging
logging.basicConfig(level=logging.DEBUG)
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
Built Distribution
Hashes for openlr_dereferencer-0.9.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23cae1b46a1bbe0588a44451ec3ae61a402a478de54262c2a6124a0c5084bc51 |
|
MD5 | 755fbf79ce0e3539ed764e52b7a51164 |
|
BLAKE2b-256 | f72bd76b31195426e2afab638e9db643796a2994283a676500ca02dff6cac2c0 |
Hashes for openlr_dereferencer-0.9.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | be5f3564af1ab3f8ea650bc473ef0139104a9e690f57daf98dc7a4540cafbeea |
|
MD5 | ebf8b0634a89d65db552bde0c69943eb |
|
BLAKE2b-256 | 593dfb44bbf729e67bc4072aa1d83bd5080d4ed0b59bf3501399f1b74710a7ec |