fastquadtree 1.1.0__cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 1.1.1__cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fastquadtree might be problematic. Click here for more details.
- fastquadtree/_native.abi3.so +0 -0
- fastquadtree/pyqtree.py +3 -1
- {fastquadtree-1.1.0.dist-info → fastquadtree-1.1.1.dist-info}/METADATA +1 -1
- {fastquadtree-1.1.0.dist-info → fastquadtree-1.1.1.dist-info}/RECORD +6 -6
- {fastquadtree-1.1.0.dist-info → fastquadtree-1.1.1.dist-info}/WHEEL +0 -0
- {fastquadtree-1.1.0.dist-info → fastquadtree-1.1.1.dist-info}/licenses/LICENSE +0 -0
fastquadtree/_native.abi3.so
CHANGED
|
Binary file
|
fastquadtree/pyqtree.py
CHANGED
|
@@ -40,7 +40,7 @@ class Index:
|
|
|
40
40
|
Based on the benchmarks, this gives a overall performance boost of 6.514x.
|
|
41
41
|
See the benchmark section of the docs for more details and the latest numbers.
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
Original docstring from pyqtree follows:
|
|
44
44
|
The top spatial index to be created by the user. Once created it can be
|
|
45
45
|
populated with geographically placed members that can later be tested for
|
|
46
46
|
intersection with a user inputted geographic bounding box. Note that the
|
|
@@ -157,6 +157,8 @@ class Index:
|
|
|
157
157
|
Returns:
|
|
158
158
|
- A list of inserted items whose bounding boxes intersect with the input bbox.
|
|
159
159
|
"""
|
|
160
|
+
if type(bbox) is list: # Handle list input
|
|
161
|
+
bbox = tuple(bbox)
|
|
160
162
|
result = self._qt.query_ids(bbox)
|
|
161
163
|
# result = [id1, id2, ...]
|
|
162
164
|
return gather_objs(self._objects, result)
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
fastquadtree-1.1.
|
|
2
|
-
fastquadtree-1.1.
|
|
3
|
-
fastquadtree-1.1.
|
|
1
|
+
fastquadtree-1.1.1.dist-info/METADATA,sha256=szgCbwJaeD_tIire0P01nYD6Iy4_3E-XUXRhh4S6loQ,9501
|
|
2
|
+
fastquadtree-1.1.1.dist-info/WHEEL,sha256=cqfH6P_NujaeOc1olR46J5a7YgoxWJnrr5iZ1_DMqps,129
|
|
3
|
+
fastquadtree-1.1.1.dist-info/licenses/LICENSE,sha256=pRuvcuqIMtEUBMgvP1Bc4fOHydzeuA61c6DQoQ1pb1w,1071
|
|
4
4
|
fastquadtree/__init__.py,sha256=rtkveNz7rScRasTRGu1yEqzeoJfLfreJNxg21orPL-U,195
|
|
5
5
|
fastquadtree/_base_quadtree.py,sha256=o5T0xqDM9i_JjpYF4U7VmLM0qUHkw0wr0bbRqb-CGt4,9901
|
|
6
6
|
fastquadtree/_item.py,sha256=LoTDr7zlsZyUrrKK6Ketzl5fxTcFF8YbcxEXbQ65st4,1679
|
|
7
|
-
fastquadtree/_native.abi3.so,sha256=
|
|
7
|
+
fastquadtree/_native.abi3.so,sha256=SL_mhqWi7EybECrblpSPyNQyFJfONjv_yH29HE0NiGw,508576
|
|
8
8
|
fastquadtree/_obj_store.py,sha256=vmhZGdzEoTQHvRbFjTne_0X2Z1l48SXyB6I9SAjjbiM,5267
|
|
9
9
|
fastquadtree/point_quadtree.py,sha256=Pz8ZS7N3kYSYJJYGa3ghKzy7d3JCA1dbi9nfEwwpF_k,5178
|
|
10
10
|
fastquadtree/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
fastquadtree/pyqtree.py,sha256=
|
|
11
|
+
fastquadtree/pyqtree.py,sha256=m3ylDtG3bnxBJSLoEH7u0rLdzb6l3MLI_UrggAkesI4,5908
|
|
12
12
|
fastquadtree/rect_quadtree.py,sha256=7F-JceCHn5RLhztxSYCIJEZ_e2TV-NeobobbrdauJQA,3024
|
|
13
|
-
fastquadtree-1.1.
|
|
13
|
+
fastquadtree-1.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|