Nick Hallahan

Results 71 comments of Nick Hallahan

So the hangout is the same time but on IRC instead? Bummer google messed up a good thing.

This idea will tread uncharted territory with UI design. Though the idea is crazy, it has occurred to me that this can be done in a fairly short span of...

I like this bookmarklet approach, and I agree, having a button in the bottom panel makes sense. Perhaps one could include a text box to input your home url? I...

You would need a beefy machine to sort the OSM planet. There are 7_992_520_838 nodes. Just sorting a 64bit index would be ~60GB of RAM. It would be cool if...

The reason I ask is that I'm experimenting with creating tile indices using a [Hilbert Curve](https://en.wikipedia.org/wiki/Hilbert_curve). I am converting Node LatLons to their corresponding Hilbert number, then sorting Nodes by...

Here's a general idea behind sorting vectors. Mutable accesors could be built into the storage code in flatdata to allow this sort of thing and maybe provide some guardrails... https://github.com/boxdot/osmflat-rs/pull/74...

Extending ExternalVector with a sort is a pretty interesting idea. Not sure if there is a parent issue on this. Have you thought about radix sort? https://docs.rs/radsort/latest/radsort/index.html

Makes sense. Basically, the sort needs to be localized first to reduce paging.

I would structure attributes the same as tags. Then at runtime, an arg could specify which attributes we want. Also, you could pull in IDs to be a part of...