Michael Kirk
Michael Kirk
I forgot about this. 😓 @kylebarron - it looks like 0.4 (and 0.5, 0.6) have been released in the last year. Does that mean this can move forward now with...
I don't immediately know the cause of this, but I can explain this part: > It is not clear to me yet exactly at which point in the lifecycle `/tileserver/data/default.json`...
> exactly what's the role of https://github.com/headwaymaps/headway-data and how were those files sourced/generated? I've added a README just now: https://github.com/headwaymaps/headway-data I don't think it's related to this issue. Note how...
Thank you for reporting. If I understand correctly, `MAX_SIZE` is intended to be the largest any node can ever be, it seems like a bug in bulk_load_recursive. The node sizes...
Based on observing behavior with printf, it seems like currently the root can have up to: `(MAX_SIZE / dimensions) ^ dimensions` children: - 2d: `ceil(6 / 2)^2 = 9` -...
Mostly just some notes at this point: bulk_load uses the [OMT strategy for loading](http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-74/files/FORUM_18.pdf). (Disclaimer: I'm not a very frequent contributor to this crate, and it's my first time looking...
And only somewhat relatedly, the default node size seems pretty small - especially if I'm understanding correctly and OMT effectively rounds it to the nearest power of 2, that means...
Thank you for reporting. I agree that looks highly suspicious. To be clear (probably you realize this), I wouldn't expect the `Haversine` midpoint to be *exactly* the same as the...
See also: https://github.com/georust/geojson/issues/88, and in particular, [my comment](https://github.com/georust/geojson/issues/88#issuecomment-1228961870)
Related: https://github.com/georust/geo/pull/1279 adds a method to check for validation errors, but it doesn't prevent you from constructing an invalid linestring.