quadtree-ts icon indicating copy to clipboard operation
quadtree-ts copied to clipboard

Serialization

Open dpaci opened this issue 1 year ago • 2 comments

Is there a way to serialize and unserialize a Quadtree? Or is the best strategy currently just to stringy, parse and recreate the Quadtree? Thanks in advance

dpaci avatar Oct 10 '24 12:10 dpaci

Interesting, can you explain your use case? Currently there is no custom way to do so.

JSON.stringify(tree) gives results, but I wonder how useful this is. I would recommend only storing the object data, positions etc. and recreate and reinsert the objects each time.

timohausmann avatar Oct 23 '24 08:10 timohausmann

Interesting, can you explain your use case? Currently there is no custom way to do so.

JSON.stringify(tree) gives results, but I wonder how useful this is. I would recommend only storing the object data, positions etc. and recreate and reinsert the objects each time.

I'm using a quadtree to spatially index a graph to find edges more efficiently. I also need to store the quadtree to MongoDB in the same doc as the graph

dpaci avatar Oct 29 '24 06:10 dpaci