Fast geographic and planar distance calculations with Python bindings
Project description
rapidgeo
Fast geographic algorithms for Python, including distance calculations, polyline encoding/decoding, line simplification, and curve similarity measures.
Installation
pip install rapidgeo # Base package
pip install rapidgeo[numpy] # With NumPy support
Quick Start
from rapidgeo.distance import LngLat
from rapidgeo.distance.geo import haversine, vincenty_distance
# Create coordinates (longitude, latitude)
sf = LngLat.new_deg(-122.4194, 37.7749) # San Francisco
nyc = LngLat.new_deg(-74.0060, 40.7128) # New York City
# Calculate distance using Haversine formula
distance = haversine(sf, nyc)
print(f"Distance: {distance / 1000:.1f} km") # ~4,130 km
Features
Distance Calculations:
- Haversine: Fast, 0.5% accuracy for distances <1000km
- Vincenty: High precision, 1mm accuracy globally
- Euclidean: Planar distance for projected coordinates
- Batch operations for processing large datasets
Polyline Encoding/Decoding:
- Google Polyline Algorithm implementation
- Compress GPS tracks for efficient storage/transmission
- Full precision support
Line Simplification:
- Douglas-Peucker algorithm
- Reduce GPS track complexity while preserving shape
- Configurable tolerance thresholds
Curve Similarity:
- Fréchet distance: Compare trajectories (considers point order)
- Hausdorff distance: Compare shapes (order-independent)
- Early termination for threshold-based queries
- Ideal for GPS track analysis and map matching
Coordinate System
All coordinates use longitude, latitude ordering (lng, lat):
# Correct
point = LngLat.new_deg(-122.4194, 37.7749) # lng first, lat second
# Common mistake
# point = LngLat.new_deg(37.7749, -122.4194) # lat, lng - WRONG
Usage Examples
Compare GPS Tracks:
from rapidgeo.similarity.frechet import discrete_frechet
# Two similar walking routes
route_a = [LngLat.new_deg(-122.419, 37.775), LngLat.new_deg(-122.418, 37.776)]
route_b = [LngLat.new_deg(-122.419, 37.775), LngLat.new_deg(-122.417, 37.777)]
similarity = discrete_frechet(route_a, route_b)
print(f"Routes differ by {similarity:.1f} meters")
Simplify GPS Tracks:
from rapidgeo.simplify import douglas_peucker
# Reduce GPS track complexity
detailed_track = [LngLat.new_deg(-122.4, 37.7), LngLat.new_deg(-122.39, 37.71), ...]
simplified = douglas_peucker(detailed_track, tolerance=10.0) # 10m tolerance
print(f"Reduced from {len(detailed_track)} to {len(simplified)} points")
Encode/Decode Polylines:
from rapidgeo.polyline import encode, decode
# Compress GPS data for storage/transmission
points = [LngLat.new_deg(-122.4, 37.7), LngLat.new_deg(-122.3, 37.8)]
encoded = encode(points, precision=5)
decoded = decode(encoded, precision=5)
License
Licensed under either of Apache License, Version 2.0 or MIT License at your option.
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 Distributions
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 rapidgeo-0.1.2.tar.gz.
File metadata
- Download URL: rapidgeo-0.1.2.tar.gz
- Upload date:
- Size: 114.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3c43b1d16a350422da95b1edc009571b84b5118a0d014f312f1e5e84fd9e1d9
|
|
| MD5 |
6862d9e00e22e11fce6e2b0b82f22110
|
|
| BLAKE2b-256 |
ec10b096409715e214049ecd53711c7e3b85fc9d6b11c32d863c6ba3db5fa5f7
|
File details
Details for the file rapidgeo-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 332.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07ca4a151d285bf0db70decbfbbe3414ec62f0709bc84c1e2ac9a6741f7f0995
|
|
| MD5 |
3b75f7878c656fa86d77388e73e411dc
|
|
| BLAKE2b-256 |
823476a4d5620f716c815265685a2c4093c90e0c531e7ecedf7037d965abc92e
|
File details
Details for the file rapidgeo-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 320.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eac3c0e9f0d5d706f274aee8807ef9a9761756728cd9298ae26aa10e3dbfded
|
|
| MD5 |
395338400ad7e78057554982a63528a1
|
|
| BLAKE2b-256 |
87fc51561ecef138191aea792c3108f58bccbd74e207c7f11b45d5db0b85391f
|
File details
Details for the file rapidgeo-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 333.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7353cac87a3288bfcdd9a21780f504eba1ce5b4b1cd370813f923446a9be0d4
|
|
| MD5 |
642b6165bcda1020cdae2ca7d146f8df
|
|
| BLAKE2b-256 |
4e86c25fd8005b0204479e7d1d9bba4e9608d9510c8a6a234d98cd6f13ba8f08
|
File details
Details for the file rapidgeo-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 321.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21f90372f665df8be71d50ee1fb290cb9f9dfb4c5a6c7d9f092ea310301bf6be
|
|
| MD5 |
ed78b5a7d2f64a8b37a622472146961b
|
|
| BLAKE2b-256 |
35f1d28ad3ea08476e7f2da4b887ddef3bcd966ed5cd7fc15e91d9f4791953b8
|
File details
Details for the file rapidgeo-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 321.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5987fc12ad8dc74b0184d8d563cc717c1109b57cdb8fa5f551c54146076c2b27
|
|
| MD5 |
2e6f52baf576ea454c252c421c6ec77f
|
|
| BLAKE2b-256 |
eadae9312eb8748672f2a5a9d37e258a8669bd4941e22e82ca0d60202bfa6f07
|
File details
Details for the file rapidgeo-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 329.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19cb192fb9b3a045b438c46db4675515de0a9b28cf8544eec3d9cea1669e598b
|
|
| MD5 |
fae09e38bb3f75555637aff3d5abbb41
|
|
| BLAKE2b-256 |
4b0f5d8c0d1edb930c3db5378a58cf363b698ef00a8be467f95b1e3919900b68
|
File details
Details for the file rapidgeo-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 317.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0591522373cf200c553d14bef2467cc51c589c2464c95eb2cfcfe9202cd6549b
|
|
| MD5 |
8d9ff926daf35967643e3fef5838155b
|
|
| BLAKE2b-256 |
ff86355238614a354693b03dcbd407789888c89cba319fe85209955b995eab81
|
File details
Details for the file rapidgeo-0.1.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 189.9 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9abbf22bc61cc6b2c5f8b192ed34dd8c7fca5b8031112e75a46fc84fa5455f5
|
|
| MD5 |
2a83ca94f809c7eabb9be01e343f5f0d
|
|
| BLAKE2b-256 |
7243be719f82dedc98c93872ae351812a15b0bd29f3f6e2ea31394c1303995a5
|
File details
Details for the file rapidgeo-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 330.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
914df1c6559fff7d01547f16350c6fd7d7df7ca1d520201c7c504528751a218b
|
|
| MD5 |
6e617c162179c4bc98ab80f115133821
|
|
| BLAKE2b-256 |
4f665976e5ddef058c5b35c9033396207f973764d972d7cf12a78c413943e622
|
File details
Details for the file rapidgeo-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 318.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c01bb9a6bba6c3f409af320518ad729b85996107b1e2413dfbcdb364797ed93
|
|
| MD5 |
757425fdbb5d921eee89023f6a82bc83
|
|
| BLAKE2b-256 |
4cd1a9def9fe42d85a479b85c0e9247973790ac331d62ea6f90ce05e7dfdcfaf
|
File details
Details for the file rapidgeo-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 278.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48103103fac8560aa4de21108b8bd994cb58fbfe2503ed1ff5de850e19b38731
|
|
| MD5 |
8899ce751a743bb87cfeb426880c7af7
|
|
| BLAKE2b-256 |
a9f1b4b69a225f31818f0f36f0433fe80823f727a6aa307f1c971f457e546f38
|
File details
Details for the file rapidgeo-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 300.6 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65d40ab7cdfa3d08bd84691afc09fceece91e15d366a491f902dab00d942ce35
|
|
| MD5 |
5f2d268df8dbcb28d2535e9774fd6a76
|
|
| BLAKE2b-256 |
d7331986f0ef676be0a2b682b54f7fcb6853cbb4d6267956d2a299a233696d47
|
File details
Details for the file rapidgeo-0.1.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 190.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6179d0d81744d40371193a1d56269ac3c147b80bed0cafbd598804a36f836000
|
|
| MD5 |
045f32d2e937f7d6a6106e3122817474
|
|
| BLAKE2b-256 |
88a59e6f9672c94c862865e5b0c31e9e31658a73d65013ffaa9f3eb75210cea6
|
File details
Details for the file rapidgeo-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 330.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57f05c34468398cb16c0823d9b6fb142a0e431ec5ddd89b10f6e8cf61abcdba1
|
|
| MD5 |
4b6ca84da09b5294c3d9ea12e9a28612
|
|
| BLAKE2b-256 |
7680cc4cc57510dd72dbdd6552a54f569c0a09afe0b6a7b940455cb5fcfaecfa
|
File details
Details for the file rapidgeo-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 318.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60075509d9b00d9e575e5cabb64c94657899d59ca50643f96cecd43f0d7bdc6d
|
|
| MD5 |
0a75e3ba1315de40a491d53ea9c53c7b
|
|
| BLAKE2b-256 |
aa2465389a09ba51025a25d0368cdc617211b7480301601d2912f276086363d7
|
File details
Details for the file rapidgeo-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 278.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8384180a2c038955c40fec143a1fb4a0e4c7841d612af26cf50b84b6ae14af2
|
|
| MD5 |
58fa4d57b26333cbbd2b46b1aaf8a83e
|
|
| BLAKE2b-256 |
ea3699f8c681a2ce206ba822f898d25c47c2d6b3ca5c6dce0156d107584a11b9
|
File details
Details for the file rapidgeo-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 300.7 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f76c5af5366dc73104029255ad15a76e099a12785ce0dbeb5f3b3f05022d8e82
|
|
| MD5 |
d070ffdeb595ff40bd3a0db6a9f88e2b
|
|
| BLAKE2b-256 |
cc6cedb7bbccd2e792e82a688ddc158149976f288476b37b2aaadf6efd5ee77d
|
File details
Details for the file rapidgeo-0.1.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 191.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ab4726f835ce031526bd1b9a2d51529e5a314a2eefc6a733242843010458b3f
|
|
| MD5 |
f37316091c58530cc0e55b2e6a4989e6
|
|
| BLAKE2b-256 |
a2c78186b16016335bebbf59e93790cecdc7d9471a02402d6f0e18e52ba083f9
|
File details
Details for the file rapidgeo-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 331.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6266d4536e46063e07749a6094562d604294a6195690b8e945b220aa8cafbdfa
|
|
| MD5 |
69f7dc041159612fefbb1e01d6b762b8
|
|
| BLAKE2b-256 |
0bae7f225465d39757d4b57121ee2761d0f266cfd6e57f7c3952f02795e7eeb0
|
File details
Details for the file rapidgeo-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 319.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
781a46f500c065b31f043ce6066e1a049e7107d3a106ed62a7f8cf6db3dadec7
|
|
| MD5 |
512f0e19da8cdc7861678662533e6367
|
|
| BLAKE2b-256 |
32dcfe5f1a21c19b401ac96c74f398a781dd02e19dc2b0e204ac1012c4b7d457
|
File details
Details for the file rapidgeo-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 281.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b70b64deaae791648bbeff735a2ad7e5f031726665a3ee07ef67c687865d1dd6
|
|
| MD5 |
433f152edfd7ab189c14d915a986ce13
|
|
| BLAKE2b-256 |
dad7f36a3aaa8580444f4b72a06983a2f5d797884fa25db9fd36b72f43387234
|
File details
Details for the file rapidgeo-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 303.8 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28f232b8ec9a1308e6c33d8088aeaf28b781dd460240d05d327924cc945dbc66
|
|
| MD5 |
5ad0181da61aa6d3ea0c48fd47e9af03
|
|
| BLAKE2b-256 |
342c7d00c31bfdfbb35da4f22234390dc97d450309b83fa048c9284933a21012
|
File details
Details for the file rapidgeo-0.1.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 192.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e244590dd7d9eff78f021b9cd52a77af2477b57639ec8685f223573cc7450a48
|
|
| MD5 |
7c3eeba40107b1a76442a4db13466472
|
|
| BLAKE2b-256 |
9d6144d6cd479253940bbe4944441175ed46dcbfbb194e5c828e309be12cc61a
|
File details
Details for the file rapidgeo-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 332.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed161cf7cbc19383976b385d19437d92cff6dd61261cf7ff5f9c6ca8c28bb66a
|
|
| MD5 |
f32786c9b5c4d611a1b879bc3c770a82
|
|
| BLAKE2b-256 |
4bdbdad13b82b2b8db4a0f1f207522d69304c2d652f73e5daef218a956789ca7
|
File details
Details for the file rapidgeo-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 320.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f537a172e85e178972a4af95ab3a4be6ac2582d742273b94bdbd2e7eccef742
|
|
| MD5 |
d8b56c911017229b0b178812c74edd36
|
|
| BLAKE2b-256 |
fc83211579d082f02a6f8c8c684263ca09b504f8394f4464bf30408a9a4fece0
|
File details
Details for the file rapidgeo-0.1.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 192.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a72c2c447215949d06096846e1c4eef8bb5faa016a7c9109d94a23e6166e05fc
|
|
| MD5 |
51274d2cfa39d34aef74fa1da28dd702
|
|
| BLAKE2b-256 |
1db8ab6f3552b59dbc8315b8fd338ad20f6585d6756b6d67bf77737a78da63ac
|
File details
Details for the file rapidgeo-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 333.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b12f3eeb9f3602905a335b29f4ab4dab5d06845f99277271b92a5b5cc78bc5d3
|
|
| MD5 |
e90e885edb072775ab9984fff6eb0364
|
|
| BLAKE2b-256 |
fc9522ab061fa1341c4d90d08e32b98542e0ee4b86131c7c0dd7e37bb1a008e1
|
File details
Details for the file rapidgeo-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 321.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7bcb274722b22332ddf1724a87a51b50c2ef71c45ffa84f16ead5343ed2aebc
|
|
| MD5 |
8c9cbc8d87f3cfa70357a4f7fe2a092d
|
|
| BLAKE2b-256 |
06927b8c20974f45d9de378fe4cd31ad1865cfa43274e98b9f8495a381db12cf
|
File details
Details for the file rapidgeo-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 333.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e74708b0ce1187d16f82141d44aacabaa69a7b47bfbde90e0131919736b6b86c
|
|
| MD5 |
50d77b418d0e335928d3baf2819bbdc6
|
|
| BLAKE2b-256 |
cc672dfc4bcea824e76822dee7ef4df0789127b9ac4ed344d06bb7257c49bc14
|
File details
Details for the file rapidgeo-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rapidgeo-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 321.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f123d8043cc4e25bfcd4d711f3ba3165f7125d064733ade4ef0c4f247c89ce1
|
|
| MD5 |
ddf32d7492a4f55f70999015b926b305
|
|
| BLAKE2b-256 |
bfe3eeb64ada1f9b62af9ee217a0337b540baca1ab087625b67c0f529209313b
|