Packages

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.

Retired package: Renamed - Package name was changed, look for 'ddrt' hex package to get it. https://hex.pm/packages/ddrt

Current section

Files

Jump to
dynamic_rtree lib elixir_rtree node.ex
Raw

lib/elixir_rtree/node.ex

defmodule ElixirRtree.Node do
@moduledoc false
def new(gen,seed)do
gen[:next].(seed)
end
end