Skip to main content

GEOS wrapped in numpy ufuncs

Project description

Documentation Status Github Actions status Github Actions status Appveyor CI status Travis CI status PyPI Anaconda Zenodo

PyGEOS is a C/Python library with vectorized geometry functions. The geometry operations are done in the open-source geometry library GEOS. PyGEOS wraps these operations in NumPy ufuncs providing a performance improvement when operating on arrays of geometries.

Note: PyGEOS is a very young package. While the available functionality should be stable and working correctly, it’s still possible that APIs change in upcoming releases. But we would love for you to try it out, give feedback or contribute!

What is a ufunc?

A universal function (or ufunc for short) is a function that operates on n-dimensional arrays in an element-by-element fashion, supporting array broadcasting. The for-loops that are involved are fully implemented in C diminishing the overhead of the Python interpreter.

Multithreading

PyGEOS functions support multithreading. More specifically, the Global Interpreter Lock (GIL) is released during function execution. Normally in Python, the GIL prevents multiple threads from computing at the same time. PyGEOS functions internally releases this constraint so that the heavy lifting done by GEOS can be done in parallel, from a single Python process.

Examples

Compare an grid of points with a polygon:

>>> geoms = points(*np.indices((4, 4)))
>>> polygon = box(0, 0, 2, 2)

>>> contains(polygon, geoms)

  array([[False, False, False, False],
         [False,  True, False, False],
         [False, False, False, False],
         [False, False, False, False]])

Compute the area of all possible intersections of two lists of polygons:

>>> from pygeos import box, area, intersection

>>> polygons_x = box(range(5), 0, range(10, 15), 10)
>>> polygons_y = box(0, range(5), 10, range(10, 15))

>>> area(intersection(polygons_x[:, np.newaxis], polygons_y[np.newaxis, :]))

array([[100.,  90.,  80.,  70.,  60.],
     [ 90.,  81.,  72.,  63.,  54.],
     [ 80.,  72.,  64.,  56.,  48.],
     [ 70.,  63.,  56.,  49.,  42.],
     [ 60.,  54.,  48.,  42.,  36.]])

See the documentation for more: https://pygeos.readthedocs.io

Relationship to Shapely

Both Shapely and PyGEOS are exposing the functionality of the GEOS C++ library to Python. While Shapely only deals with single geometries, PyGEOS provides vectorized functions to work with arrays of geometries, giving better performance and convenience for such usecases.

There is active discussion and work toward integrating PyGEOS into Shapely:

For now PyGEOS is developed as a separate project.

References

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

pygeos-0.10.2a2.tar.gz (127.1 kB view details)

Uploaded Source

Built Distributions

pygeos-0.10.2a2-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

pygeos-0.10.2a2-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86

pygeos-0.10.2a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pygeos-0.10.2a2-cp39-cp39-macosx_10_9_x86_64.whl (991.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pygeos-0.10.2a2-cp38-cp38-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

pygeos-0.10.2a2-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pygeos-0.10.2a2-cp38-cp38-macosx_10_9_x86_64.whl (987.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pygeos-0.10.2a2-cp37-cp37m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

pygeos-0.10.2a2-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86

pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pygeos-0.10.2a2-cp37-cp37m-macosx_10_9_x86_64.whl (987.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pygeos-0.10.2a2-cp36-cp36m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

pygeos-0.10.2a2-cp36-cp36m-win32.whl (1.1 MB view details)

Uploaded CPython 3.6m Windows x86

pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pygeos-0.10.2a2-cp36-cp36m-macosx_10_9_x86_64.whl (987.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pygeos-0.10.2a2.tar.gz.

File metadata

  • Download URL: pygeos-0.10.2a2.tar.gz
  • Upload date:
  • Size: 127.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2.tar.gz
Algorithm Hash digest
SHA256 1ac2cbc2668d5e554c8192c48ac8d5a327a63a0ca211a042d076d617d99e5e4a
MD5 94504e2c2117469763bc48dd91a5dcd9
BLAKE2b-256 38ff65cdd73a2e71c7e136506a35ae4a59fb192efd6a4c01937612d0056a7460

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 26820714069e1897f6dd1ea0b29f90db2af1d2e4dbcb6812d529d1cb0c6d5953
MD5 9849a3f0abb4f9dfb4382a268e3e0684
BLAKE2b-256 bc461023889cd27a710843697edb08c684871216f4c2d326de1f0cb70b1862e6

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f3fedd15f52274e08ee76cca7437a076825acbb1395af05c6675c0ccc3f94719
MD5 a9e65b660056519fe6963f2380d3a04a
BLAKE2b-256 efb7ded30d2a54745f51b91157093b56be633cc1e6c30706166cac26745983e9

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9517e19a92db0a5ba41ac4ad3b3f54c1bc4ad3757080a387ab0f3e118b7a52b8
MD5 8b6d83c71501a6920b9fd95853a80906
BLAKE2b-256 c29c6254cec40db35c4ed0f356a663672a6e17997bc1b40da182e87bae79d080

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a181b8505c31ffe15cf3ad092a644adf839bc24a0ea34f989c85d9cae151e5e9
MD5 9025675c3f004ec1bfbcc83320c32093
BLAKE2b-256 124531ca7c334501a82fbc1f6cff7a13077ab18fb20dfd0b1766af0dc7d4bad4

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6c83d11bf7f97abb2afd20db144c6e3857423b6afea34d10d232c6ee060bbd72
MD5 ec4a1a69962370cd769a06403e108adc
BLAKE2b-256 a9073724253c002876c49b4f0e4b179326ec3cfb0d6207cc533ed263fe8f7214

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 991.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ab39d4b9d8d167fe350127d5feedf0120b611652cd43d6576790c30b8da6fd3
MD5 3219ebea51b173c85d52ee1bca75e1d9
BLAKE2b-256 489974063d7a1ac515d5aaa86abb6dd14530e5b4ac8c52f24bad0b3b658cf2a2

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e17da7ecc302e2bdb291d3db1286e569847dfc62044397daaad1d39258f121ee
MD5 096037478b526da191248aec1ca8881c
BLAKE2b-256 21969d04ff24a7844ab6d31e86f4f6d927991353729687977c49519b7415767b

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f3bbcd52dc433f7e0c6619a14d8d90ffb8a8e49b3594e0d8ea2237b5107f1263
MD5 daf849f2d0ea2857af9e489e0a222ef1
BLAKE2b-256 fc5097756ad3d705630549d89ed083fa8a4f26ea79933aae405192c0650d3833

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 145c3f5a9c98af9b38b60b675ea3012c4a8bef1f8ed0463c533ab4ed8537f439
MD5 4af8d05298b8933c8aba4ba1282df74f
BLAKE2b-256 d47d08412e7b864f8c86b3831ce9bcbeedf07be254a353d5b2c85b9bf598bfe6

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3067af046ee65672a4f680365b3d7a49a92c154d782d75fb551a576da74a7e78
MD5 ee72dff598ddc596647984beb566e5c3
BLAKE2b-256 f50ab9e8c1f3da7126048e512e2d7c850ccaac1f6330697d1aefe76f43f35ed0

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 987.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d68af5d297e02ae1be860ba5271a91a0a3795441737448e4cf4a50232a88590f
MD5 b706d9bcb779efc95ad2ee51e00e822b
BLAKE2b-256 e51769cfbcfd0f96ec442579de7b0e19fa5abea94d20151915c6d71063c8ebcd

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9c7df7390f3e54a460cdb171316ab567383423aed14c2f507a769bf7fc062d14
MD5 ec043e470777c110ebc8c44f495248c8
BLAKE2b-256 0581f9ddc3ca49792da8256cad544ee43ebe50032cc28eccb44ab7a8aa502cbe

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a23e74303934187348c1742dff4a9b602a4e1b8bdaaafb5f60d531e29fcc3988
MD5 9c819627d557c537c6a2f67a70dabfca
BLAKE2b-256 f0874655c9c94f6473e4d5618fc661670236f7d050078ec5f23e78c4b46dca53

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c39a3d75039e0315b7f36618433294e7d2869968df5438248d17f7f9c089e67d
MD5 9e864efb0f7ac7dfb97e39bf28905053
BLAKE2b-256 1986f11c249960a8b473ced1bc472082135503e36772521854724dd038e466ba

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5eda120105c3e237229792bbb5cfb581ef9c3090197ac55dabe7e6984b1fc875
MD5 46dc8d6e213221955452f0ed3af5072e
BLAKE2b-256 640da201df643996f629b221bd2badfd70b938ad90c9e8db8c85b8163e24fee4

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 987.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9975d6720efe1e3355b7be78caf5e8181befe3c5e49395b2bfdb042e5b60470b
MD5 bd0dede83f5a06f0b26ace6f2dc601f0
BLAKE2b-256 73006a530987f4337a9de23699d204c25fcdd48b7b489dcbe21d77871a2342c2

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1d6c21dcdf58d82c68fbde09ef6b987112ebeed11896ff6ce38f4d50fc94aa48
MD5 19a8fe89e6a4c1c0219de6083bc28bae
BLAKE2b-256 4c8e2fbba4304b140ef5be2735a3d7d9a3b6da45225deee0d21747b0325b50fd

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 eaec1ca232c30d9e5adf1af406e43d763ea7a9c2b6a339b75566aed5d9395fd8
MD5 6576e6ae88b74d37ff0969305963ab75
BLAKE2b-256 8c624739f0abca314005a3545e63c1472b262826c4627f1414638107bf7d480d

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 447bfa417fc71f4d8ea36bb910ab0617664ab1881594b8ebfbf282cc7c4a7192
MD5 e41d74ddebfcbe20d4b657028cbc7aaa
BLAKE2b-256 e5fcfbe22e3b79ad3934fb1453e87aaaf85dd24306e1a652595946243e1510d8

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b9a0d80e5bcb382ede3e84206e36ec4cb858cec85b3dd4d527eb2184692fc52b
MD5 91a9f2400c88859ec05a251f3b367360
BLAKE2b-256 3541761512e16bfec8176519eed7c3a855e15f9bc853816f1a2a39d0d946f242

See more details on using hashes here.

File details

Details for the file pygeos-0.10.2a2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.10.2a2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 987.0 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for pygeos-0.10.2a2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fda1702ed8ea06bc93cb84475d64e9421af0c4f6dadf2a5ef9512e13811c08c3
MD5 d2b9382e9a41fd284a25723109edbd02
BLAKE2b-256 b5f7660602c0d17e5a3c7dd3636d86f63604273218db1910cb5d8d0c37f57828

See more details on using hashes here.

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