DeloitteOptimalReality / LightOSM.jl

A Julia package for downloading and analysing geospatial data from OpenStreetMap APIs.
https://deloitteoptimalreality.github.io/LightOSM.jl/docs
Other
48 stars 13 forks source link

Modifies the graph on the fly by adding points on the edges #92

Open pierrethiriet opened 1 year ago

pierrethiriet commented 1 year ago

In the extension pgRouting of PostgreSQL, there is a family of functions (withPoints) to calculate network distances between arbitrary points and not nodes by temporarily adding points on edges. This option is useful when edges are very long or when targeting short distances (e.g., walking distance). Would it be feasible in LightOSM? Using nearest_way is already better than nearest_ node, but the partial distance of the closest edge is not considered. Thanks.