Julius R Friedman

Results 175 comments of Julius R Friedman

Okay... it seems the lock in CalculateFor is causing the issue... at least in some cases. Changing CaulcateFor to lock the DB instead of the ProfileFactorAndSpeedCache seems to remove the...

@xivk, would you also like the node tags to be stored? e.g. in `AddNode`: ``` #region Node Tags var nodeAttributes = node.Tags.ToAttributes(); var profileWhiteList = new Whitelist(); if (_vehicleCache.AddToWhiteList(nodeAttributes, profileWhiteList))...

Hey, thanks for pointing this out. I made a quick unit test using your example code integrated and I still get what seems to be anomalous results: ``` [Test] public...

@xivk , I tried an implementation from stack overflow and still I don't get 223 or less... ``` var d1 = latitude1 * (Math.PI / 180.0); var num1 = longitude1...

I was having a harder time debugging the LUA profiles to determine why certain routes were not working the way we would expect. E.g. there are what seem like U...

I found the module in code @ > https://github.com/itinero/routing/blob/develop/src/Itinero/Profiles/Lua/ItineroLib/ItineroModule.cs It seems we have: parseweight, parsewidth,parsespeed,log and format so that part of the question is answered. Thank you. I still would...

I think I understand what your saying, what I find unusual is that there is no way to register the C# profile to the existing routerDb even though it was...

What's also strange is that this lua profile on shortest can find a route... [locomotive .lua.txt](https://github.com/itinero/routing/files/4281463/locomotive.lua.txt)

Seems to be somewhat fixed via https://github.com/itinero/routing/pull/302