Skip to main content

GEOS wrapped in numpy ufuncs

Project description

Documentation Status Github Actions 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.

Important note: PyGEOS was merged with Shapely (https://shapely.readthedocs.io) in December 2021 and will be released as part of Shapely 2.0. The development will take place at the Shapely repository. Please raise issues or create pull request over there. PyGEOS itself will receive updates (by backporting from the Shapely repository) until Shapely 2.0 is actually released.

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

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.12.0.tar.gz (141.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pygeos-0.12.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pygeos-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pygeos-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl (2.2 MB view details)

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

pygeos-0.12.0-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pygeos-0.12.0-cp39-cp39-win32.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86

pygeos-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pygeos-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl (2.2 MB view details)

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

pygeos-0.12.0-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

pygeos-0.12.0-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8Windows x86

pygeos-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pygeos-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl (2.2 MB view details)

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

pygeos-0.12.0-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

pygeos-0.12.0-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7mWindows x86

pygeos-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

pygeos-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pygeos-0.12.0-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

pygeos-0.12.0-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6mWindows x86

pygeos-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

pygeos-0.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pygeos-0.12.0.tar.gz.

File metadata

  • Download URL: pygeos-0.12.0.tar.gz
  • Upload date:
  • Size: 141.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0.tar.gz
Algorithm Hash digest
SHA256 3c41542ef67c66015f443ae3e6e683503a8a221f9c24fb2380f6ae42aed1600a
MD5 eda4493db1aeb0503c83db5dfe84ee1a
BLAKE2b-256 786b8cfe885a22aedb27cdbf5534dbaa49d1ee8037bd590b1dcebc84350e5281

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4ec8fe577ca7ba6dd046481cdb736f99961216fcb54c84211287a10d1158459
MD5 3f1271e1b35bbfb31b541f650f897ad9
BLAKE2b-256 8894dad931fc335b3ad426c9ead3e63bf877b19c4e27b8c08a40687d4f2ae1a9

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26fae3eabb83a15348c2c3f78892114aca9bc4efaa342ab2fa3fa39a85e05dc5
MD5 42bf84d8c741edbdc26939a20652d543
BLAKE2b-256 b46401e6c648e6d0b305e0d1cdbe4fd96bc8d0fbae7cb14a929e5645cbe71524

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75b5b0aefffb6b7747df299414df4f2e160e3a8993d2b6a86b805fb5b0196f13
MD5 6983056882c57fade7c7d45111cf09ff
BLAKE2b-256 1790f29cf92c3211d6fa4831a5a0077aae4671df630a9b621b9c73bac2980b41

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec4112b69823866fa966ec4869e1b51b6560d892c65c20b3fb065266519046e2
MD5 22c71dbba35c6fb5129cec837922321d
BLAKE2b-256 32ac54042bd3ef1fd9b35c5e24ed05cc700e8d828f274d95dca22902c2d5a6c1

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e3593360f1a93d2a6fe1ea75fa84882186bd3851d187e4c4bbb586495c748e3d
MD5 d0b8a0e242e5f7bc84e0efe1994b970c
BLAKE2b-256 3063e21d07fab2e17c0ace261dacdf86fa9f615a66ce2a40f6ef00f8d3cb6d1e

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 25b94e8bc755a8d3e50661995556b2c27d253bfdd55aa719ea3c202de44a9569
MD5 68785403fb7b798ace242c19a62da337
BLAKE2b-256 6f4c1cdac6e8036f68d0a546118c78b35855b6e7ed8a7010d23ac48f1984051d

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d2fefb3a9cf96d1ee4841772464e82b2ae3a8ddf3caf14ecb04c5fcdae6a7248
MD5 4238271bf223b88a76531d043c2f072c
BLAKE2b-256 94d6c2234e86cbe93b234db7af50cce31be19d3cfdce585dc193a7422fb103e3

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f045632a940905c2f380544450bbcd48556b529bdfb9320aac777d90990fc25
MD5 f688d1c6f0c853283c6d6f45a9a64201
BLAKE2b-256 592c9ba395b95763f4e5337c9275bb06774f75fcf7fb12e2a75ffe002ae2918d

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47e7b2614d8982f841e33cc1f18d39b7a654d4d7958d456e4765ff4a9c76589b
MD5 7dffc68347a7b6d7e15ef68438d027a2
BLAKE2b-256 6a3e9090fd382c1434be89d1d91dfcb73672ec799d10dc523e0de0bca79f6a4c

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efcbd52e5602d758b1ff42e67b91b33b1599667b478d0be9c13e17b286cbfcf0
MD5 dab40d84dcc2e56a49379a025ef77dd2
BLAKE2b-256 5e553800f7770d65fe015be0f5ad8d059ba6971c737c8cb637831000975cc89e

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59971b44e3b8f61e96b159acdc5f9347b94766a4efb94af7b926b1c4958b60d4
MD5 e5a3176fb6353191536f66dd06130333
BLAKE2b-256 d3cfa6b19e5b1cda2d782482d6a6a55b5b7a22b4194b2de189cbc4cc64f1e140

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aeaf1f9ae45cf35a25ccdeb2b083e057b31d98cf9351bfc42a59352130ff5c31
MD5 23cb779f4bf6a0307f06f27ea0cd118a
BLAKE2b-256 2c0d2fcab0046b141c038cae47fe16d2eb0aaed3000b9312b682498f421a8acc

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dfad4c0a4b60861f8e571ca409ce128859d26e1ac26a15ee071cf1f222431fdd
MD5 7908c0209c781a45892b83b682321753
BLAKE2b-256 939d6d5009bcdc921c6f1b873230666d02de3330eb442284c22b70ab51d7a9fa

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 41119e394ea90bf8f697613f530cf92c77ab98346c19cb19beba33a82fd5b91d
MD5 a859d91529b514f2e7996eda3583f48d
BLAKE2b-256 bf7bd82c13ab2e25cda8df5acdcc815013ec3e1bce9a97d573d46c94dab7a10d

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d72e3691e47f44b49d3a23f05bb55eca34ed28b0e7b1b4aeb50207a95ae83f8f
MD5 218f1dff756989439b1d72748bea8a30
BLAKE2b-256 ee3714ee35c0887b6a224d8426a560675c0bcd719dc291d619b2d64fc2797840

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 962df97f937d6656ce9293e7072318e99860b0d41f61df9017551855a8bc188e
MD5 688f5034a54da7ef9e4c008b1b44f70a
BLAKE2b-256 900b6f149c71dc7e035bb872c7f819127749d0a3c4388473f28be59ddb0b61fc

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2453c07c9b8a24054f897ed56e8046c7dd743939f7f5d6637fdeafdccc411f29
MD5 0c81d2b938dbe40dd41031c4c9f2ffe7
BLAKE2b-256 ce8faeeaebad60192a2c5964a7ef01ecc6255f4b786b38611a8ee0fbbffd7d42

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8fcb175645f57d7a6fa153a1582f9dbf625bb69c55267207b1bc8d2b983013b
MD5 52bfc972e58711b447f3e2a8893b254f
BLAKE2b-256 a54d5ce8ba2b73dc5adbe1e9a67691767d68c3f5e93177ad7747d5480dd000d6

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11cb186f6cb9a2453a990a3e9894f861d308c574170d1c6f55a598cb11b87579
MD5 3f8892a69b2f6044123d8a530d27d5f3
BLAKE2b-256 1011446d5e3f106b63379163860dd3d70c1eaabff5c5b2df8ce26dce6917e413

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bc1b9a548848f9c69c913eca8ab0bb9164b35a28da51f86fcc0887c553bd863
MD5 5b33ba8064b2cc176e75fd27b5a8ab8b
BLAKE2b-256 250d1bc78c6ac4ce3a2ce4f298051c84fae5756be517410a9324c2652dce952e

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 60d103b4c099940ad73f0b193f65dfc77f957646451b8a399e4f1f5835c57ab6
MD5 7e9f56b58b452b79fb0d3deaa8086874
BLAKE2b-256 e216ae7aa3ec7c251abb42413c90e42bbcc238dc0cb02527eb554816aec031ae

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 835b7b1b2ef44453ff9d759dd67ee17fb89a52d8cdbd4d1655bf0be6ccfd90c3
MD5 a715cff42774cb53cecd2383fd463175
BLAKE2b-256 b8c9451fb18e909d935a09a0c7faf222ff3246cb97ed4564193a016f7308cd75

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e3bcfb55e966aea26ff8e9b8fd314cee618c363f639e83b1eaaefb66bc97e7b0
MD5 fc137c27ad6fe4140db3aea610343dd6
BLAKE2b-256 7dbdcced74c8d62623524a17343accdcc82b58093e06bfb3f97d69aa63955534

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 504a03330147d2bb3309f291f4333db892cdba40a66ac4f3db8a2672dff7cf4f
MD5 bddaebbb865dfb9e2ab93c8fb96f0ea5
BLAKE2b-256 64632007e48e8365d38d0f9e89a95e7048f366f6098fed8a8eae09f6f34cc516

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ac4ddfbe548d8a3e93732577b8a6d4df071f038338f6c400466b3c2bfe3dc78
MD5 5243de7038368884bdd90425006fa7db
BLAKE2b-256 887289feb00ded4da3becb671b9b2f2989cab649ba8b1e5aedefee6b1bd3df4b

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f74abd81487839532c7110721f3b1450d0c6bcfb5e18c45d604ddeb75ec99f86
MD5 ebd64ce442ad4ee04b033b1549dea077
BLAKE2b-256 b810703464e7973240553e0a0ba4289847335fbc8c479cdb426914bb8bf6d0a2

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f155f268676ff7b20a553a542a436be0f8df14233c873facc80214d836d6463b
MD5 bbba5587895bc7044f18dfba1a853f49
BLAKE2b-256 c26dcf22147fe9f970192537b781637b75541b6f56a8fcfb28ba71f1329d8987

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a6cf496887f25b99427624399bcd07107660e6f9135466c33dc60ad9bd4c9ebe
MD5 c38276af484ba113aa47962b6a67280d
BLAKE2b-256 37be7e924e63a9fccf8b4034ac4daade97af098fa1cb8d91952089d84f3ab7a1

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ea7f3ea9c76f8c94ed9b360b4d6249c44d5bc48c8db5cb3a5d4b017e51d1bd8a
MD5 7716dd1cdb00f41d22e70a3de21c50d7
BLAKE2b-256 e801b14ac19cb68808a896f5e058a6e2ecd3eda6041a949f9a1f738b718f197b

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12e06ec4417453f1a95d36b8ba8822569c30f6938dd4a7bac97433cab641b61f
MD5 0a1c4b0a66c96a19f4d996be7bc266a5
BLAKE2b-256 5301f08b0b383d782058b657a4e9492850c52d70c03580d3cd7cbd074fb61ef6

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3cf6d734aea07f04c7644ae24e303a447e96ea123ea524ab309e492ca683240e
MD5 2727686513252bcbc9c92b414b32c26b
BLAKE2b-256 0c11f86d110b90f472503e73c0ee54929ce8a1f941e7d254dd8823819950c86c

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygeos-0.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da856315a4047d581300d860dd2aa01438e64121570bed46c81ad0a90f477db0
MD5 412baa03db61ceecac8939639b739954
BLAKE2b-256 ba9932c10d70a10afb9d4200fad120dd6a40799d1e94b35d3d3b1ed94729003b

See more details on using hashes here.

File details

Details for the file pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6db68dc4583c88222d32cc624622234a97080b3c4650f0c0e12987664d49f374
MD5 db2aaba36d385696de14153ec2d7a470
BLAKE2b-256 fd9cdb7a1181ec0de73adcca0b0ff42d62cd437cc54c69afa6a7d614a3eaebcd

See more details on using hashes here.

Supported by

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