Nearest neighbor search on Earth's surface with a GPU
Project description
Vincenty nearest neighbor search using CUDA
Nearest neighbor search algorithm on Earth's surface that runs on a GPU and uses Vincenty's formula
Application
Nearest Neighbour Search is the key component of location data analysis:
- Nearest Neighbour Index is based on measuring distances between points
- Both global pattern analysis algorithms (Global Moran’s I, Getis-Ord General G), as well as local pattern analysis algorithms (Anselin Local Moran's I, Getis Ord GI *) with the k-nn approach to define neighbours are based on measuring distances between points
Using Vincenty’s formula allows performing location analysis on any location using geographic coordinates.
Requirements
- CUDA-enabled GPU with compute capability 2.0 or above with an up-to-data Nvidia driver.
- CUDA toolkit
Installation
pip install vincenty-cuda-nns
Usage example
import geopandas as gpd # here just for example
import numpy as np
from vincenty_cuda_nns import CudaTree
df = gpd.read_file('points.geojson')
# data is array of points like [longitude, latitude]
points = np.stack(df['geometry']).astype(np.float32)
# build tree for the data
cuda_tree = CudaTree(points, leaf_size=4)
# query over the tree for tree nearest neighbors (+1 for itself)
distances, indices = cuda_tree.query(points, n_neighbors=4)
# you can also find distances from andother dataset
from_points = (np.random.random((100, 2)) * 180) - 90
distances, indices = cuda_tree.query(from_points)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vincenty-cuda-nns-0.2.2.tar.gz.
File metadata
- Download URL: vincenty-cuda-nns-0.2.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba43d4fde7773986a860d00b66ec54cad5e0a8a23fdb6b479243047c9f936977
|
|
| MD5 |
138be9b5d4c2023b776d00bd3b527bdb
|
|
| BLAKE2b-256 |
ab167b48f18bf32d390a0318c83136218dba3e92bf605b9b11514b61e972dd29
|
File details
Details for the file vincenty_cuda_nns-0.2.2-py3-none-any.whl.
File metadata
- Download URL: vincenty_cuda_nns-0.2.2-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3801c661e19ae43d55c5822ef9dcfabaf6042c09a09629b61bc226ea357018d
|
|
| MD5 |
db70403626145e80671ad2166d9aa13d
|
|
| BLAKE2b-256 |
a68f14fe385f03529827a1aa01b1feb7012a57c87ad31afaca56579a697c01b6
|