otbutz

Results 126 comments of otbutz

> using HTTPS isn't mandatory Only `SameSite=None` requires the `Secure` attribute. The question is if we can switch to `Strict` or at least `Lax` without breaking anything. We could also...

Should we add a flag to the config.xml for this? e.g ```xml ``` I think we can't decide this based on address/tls/insecureAllowFrameLoading flags alone because a reverse proxy might also...

With #4819 being fixed in the latest release, these are the missing bits: - [x] #4294 - [x] #3055 - [ ] #4849

We should probably cap the max speed on roundabouts.

Taking a sneak peak at other open source projects might also be a good idea: https://valhalla.readthedocs.io/en/latest/tiles/

> we can use much smaller pointers (2 bytes?) within one tile > Also it would mean to switch to `long` edgeIds and nodeId which are not adjacent. If we...

I'd preload the random values using a `@Setup` annotated method. Otherwise you're adding that overhead to your benchmark values.

It should be ok for relative performance as it's still a pseudo-random generator so there won't be any entropy bottlenecks or something like that.

`testDA` has a pretty high error range. This *might* explain why the `testMDA` seems to score better. Moving the random value generation into a setup method could probably lead to...

Ultimately we need to untangle this thicket of default values and derived ones from maximum values. To summarize our current approach for routing: * use a value from the [defaultSpeedMap](https://github.com/graphhopper/graphhopper/blob/be7b2476aaff55c7c266fd517c8cf2c37ae91b43/core/src/main/java/com/graphhopper/routing/util/CarTagParser.java#L109-L141)...