Skip to main content

No project description provided

Project description

Pygeohash-Fast

A Fast geohasher for python.

Created by wrapping the rust geohash crate with pyo3.

Huge shout out to the georust community :)

Currently very WIP, only supports encoding geohashes.

Speed Comparisons

Compared against the great python library pygeohash This isn't a perfect benchmark, but should illstrate what's possible. Tested on 1 million randomly generated lat/long pairs.

Results for Pygeohash

In [14]: %%timeit
    ...: [encode(lats[i], lngs[i], 8) for i in range(len(lats))]

10.8 s ± 77.4 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

Results for Pygeohash-fast encode:

In [16]: %%timeit
    ...: [fast_encode(lngs[i], lats[i], 8) for i in range(len(lats))]
3.44 s ± 11.4 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

However, in order to improve things in further when encoding many points we have methods for encoding many points at once.

In [22]: %%timeit
    ...: encode_many(lngs, lats, 8)
155 ms ± 3.58 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)

So for simple geohash encoding this library is ~69x times faster, nice.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygeohash_fast-0.3.0.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distributions

pygeohash_fast-0.3.0-cp37-abi3-win_amd64.whl (189.4 kB view hashes)

Uploaded CPython 3.7+ Windows x86-64

pygeohash_fast-0.3.0-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl (273.0 kB view hashes)

Uploaded CPython 3.7+ manylinux: glibc 2.5+ x86-64

pygeohash_fast-0.3.0-cp37-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (459.3 kB view hashes)

Uploaded CPython 3.7+ macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page