Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

v1.0.0: Version 1.0.0

Latest
Compare
Choose a tag to compare
@stefano-m stefano-m released this 31 Mar 12:41
· 23 commits to main since this release

Version 1.0.0

A simple QuadTree class implemented in pure Python.

At the moment, only point elements can be inserted.

A point element is a 3-iterable whose 1st item is the element's
value (anything really) while the second and third are respectively the
easting (x axis) and northing (y axis).

A bounding box is defined as a 4-iterable that contains the bottom-left
and top-right spatial coordinates. E.g. bounding_box = (0, 4, 10, 20).