You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RetailTree is a Python library designed for efficient management and querying of spatial data utilizing a tree-based data structure. Specifically, RetailTree employs a VP (Vantage Point) tree for optimized spatial data management.
3
4
4
5
# Key Features
@@ -14,34 +15,45 @@ RetailTree is a Python library designed for efficient management and querying of
14
15
You can install retailTree via pip:
15
16
16
17
```
17
-
1) clone the repo
18
-
2) cd retailTree
19
-
3) pip install retailTree-0.0.1-py3-none-any.whl
18
+
pip install retailtree
20
19
```
21
20
22
21
# Usage
23
22
24
23
```
25
-
from retailTree import retailTree, Annotation
26
-
from retailTree.utils.dist_func import manhattan, euclidean
24
+
from retailtree import RetailTree, Annotation
25
+
from retailtree.utils.dist_func import manhattan, euclidean
0 commit comments