You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 3, 2019. It is now read-only.
if i try to initialize a router with a PBF-File bigger than 15MB i get this out-of-memory-exception. Task-Manager shows a lot of memory still available.
VB-Code like this
`Dim FnOsmFile$="D:\BigFile.Pbf"
Dim interpreter = New OsmRoutingInterpreter()
Public router As Routing.Router
Public PbfStreamSource As PBFOsmStreamSource
PbfStreamSource = New PBFOsmStreamSource(New FileInfo(FnOsmFile$).OpenRead())
router = Routing.Router.CreateLiveFrom(PbfStreamSource, interpreter)`
For the task i'm working on i should be able to work with files around 50MB. The attachment-PBF-file is a sample (25MB) that causes the error.
Any chance to get an improvement of Router.CreateLiveFrom?