Packages
dynamic_rtree
0.1.0
Distributed Dynamic R-tree (DDRT) implementation for Elixir. It's mainly a R-tree. Why dynamic? Because it's optimized to do fast updates at the tree leafs spatial index. Why distributed? Well.. you can run the DDRT on different nodes and they will have the same r-tree data.
Current section
Files
Jump to
Current section
Files
lib/elixir_rtree/node.ex
defmodule ElixirRtree.Node do
@moduledoc false
def new(gen,seed)do
gen[:next].(seed)
end
end