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

Uploaded Source

Built Distributions

pygeos-0.14-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

pygeos-0.14-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11 Windows x86

pygeos-0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pygeos-0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pygeos-0.14-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pygeos-0.14-cp311-cp311-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pygeos-0.14-cp311-cp311-macosx_10_9_universal2.whl (2.2 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

pygeos-0.14-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

pygeos-0.14-cp310-cp310-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pygeos-0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pygeos-0.14.tar.gz
  • Upload date:
  • Size: 141.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14.tar.gz
Algorithm Hash digest
SHA256 30fbc17f64844200b85133b885fcfb65541b8779531f6ef4f8fe467d3fba7623
MD5 85450969759e2a9601fe18bf82fddcee
BLAKE2b-256 ca1f07cda42b8a478ddfeb8b0bb328a10b2759ae75f8a60026238c0e33c9ef80

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pygeos-0.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d41973d0361712e53d54489d0c1cc6d37b941e5c808bfd51c461e36c0b4758b
MD5 63dd140664f39472edd9d5d2dcb9ec9a
BLAKE2b-256 00db130fdda366f3e3f08984a3638d624ce10565fe306ac93429d04537a22f5b

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp311-cp311-win32.whl.

File metadata

  • Download URL: pygeos-0.14-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a5bae1772f0d333e38689bf691c23e3416d797711bfed8086d78c91d63cd373a
MD5 b9abc4d5ba407a005680d355ca9bf20c
BLAKE2b-256 055cd72d59163655d29e6fd4c6ebf7f9b1e286b47c6adfb20ecfce7c6836e83c

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 987facbd0283ab1990ff490681898a93690e8181f8c92e37c5e23d630750ef4c
MD5 5ff8c30312596d1c8af2f7c213af635b
BLAKE2b-256 4ae58fc6f9586674c06080327a4fe0774d871416b6bd60974c468559ec650570

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygeos-0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67fb8f47978fff46f6f209d3aae094c3530ad70cce6b7baafc01f077549770c2
MD5 73aa7ebc1677a1a7e83d262ef3d75c83
BLAKE2b-256 e7c8d094bb33177d9ade063dc20720fc747c08c978ebd5e497520fcfed3e656b

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeos-0.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6dc30f459f9474fb1eb161291ff7b6258d73c27f8020a0d5683d9d98ffec3d0
MD5 0cd6f742603a663db410b2235ed4a789
BLAKE2b-256 74ebfc13b19ca115428e7eabf27b8d925931d3a9984d231405b76f31c8adaf5e

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 251a663ac32312641111d00976878758637ebab40354f97f544abbd4cea3e677
MD5 6f8e659ed8f7a56a0fc3615a5cbb237c
BLAKE2b-256 c71ddff60d4a7b427b27d7e77ff974b7456e996a9ed3cbda5f8b10d9e7f4f2b6

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pygeos-0.14-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 de8261998e7a767cfa4ecf4eea3cc5648cc8afcf57d0286ceaf2e63db3c85adf
MD5 b0c06a3e0f892de08e67d760652830fe
BLAKE2b-256 0bb62a5d66f1742b5ae7ab29c442cd629ce75d5e66310ad3641a8f11076f9dcc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pygeos-0.14-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/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 138f4da97f91f475ba41ee3a2249f59ec39ce2058144a4f97bb19e57d7a6bc1b
MD5 669480895f69844a1b42c034dd2e1cd5
BLAKE2b-256 b9dd676f492f150f7444349f67a4b99be2cdeac82097a8cf6765cf326cb8abcf

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp310-cp310-win32.whl.

File metadata

  • Download URL: pygeos-0.14-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7cae0518ee249984a5b57ec3501e135b3f455a3c173846cc3d314b4f63f7ead9
MD5 1d428d69f29d340d6d87f8ba9e3506ee
BLAKE2b-256 1500bd5f59c8488740c807f00bc6011e3f7e2185f86339a7fe5097c46aab4a5b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 169a9fafa047dee10ef98479eb0f60bfbf5c688d8228a1c785c1c8ca154345b1
MD5 3c3b53f4a4bfd01c66328124287a78db
BLAKE2b-256 4b8c0ac92b1fa6a5f7d77861e6974c85335b703cfe2f4197610d52035b052d99

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 785bb70f2d3bcf331e1fa14f17d95e7aa045e0a56114e25cf1976cae29f0419a
MD5 ab93a9278a849c9f6c914da06ff0899f
BLAKE2b-256 e01015a1d48100b726c403c38df3c9991c1d4fad727bda06026dd817fc4ad50a

See more details on using hashes here.

Provenance

File details

Details for the file pygeos-0.14-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf00c2be6ea9816875636cfe139ff5ac53e9b99e0e7ce38c92cf67b69cf2d6be
MD5 e05a1210f5b4f23bb7d7451f52010af3
BLAKE2b-256 b99e022933e46efc78ba2dbfad6e74e187c61ac9dc77b377999f41ba6e360abe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cfad06eae27e7236a9dc1a6d1c278525d4cf79422cd05ac6513d55032ff0b6b6
MD5 bbd166d888783c98ffe26d2f9188a294
BLAKE2b-256 263ab1b1348ed4954946efa6d300a68776d1617454fcc240cacbb8cbf369d281

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pygeos-0.14-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/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c7b3eee65b07c0adb0ca5668ac55b3c51699bbae67e541fc00c6a9b53bb6ddfb
MD5 66bf1d918365e0264b9b5b3043624db5
BLAKE2b-256 1aab8d133be2f10e9c56c45669d190cbd1275a5b1a3f9be4f612d782702d6b59

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pygeos-0.14-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a545ba2fd37a350a3373f274bc6d5ff61a94249f154ded9c5a1b7badb89c9bf4
MD5 ab8675824288d24f0efc33eea8f280d2
BLAKE2b-256 bb22ca1ac7880d52a1e8d0aa6a83e3689e8f7ac1ad53ca425d72ceca9f4b753d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ad6c749665badc4c66fcfea5a18b440f24b4c6e1df755391663598a709fa8f8
MD5 f797174532b1dfb5e6e5a8c7f99c20ed
BLAKE2b-256 8a0f25cd3e9ab75b498a3316af0f047a181a60466bc5f44d7423c2bb2d2a899f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85935aaf69c5fa6a7e3e4363e8fa429ecacad23535999233923ed3ad33d203eb
MD5 bb06a7fbcebe0181d2076c8a15467086
BLAKE2b-256 80556c857205f7884b58d5669290e480957faf07ea414a4c0d87658caf780582

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4194c8068dc856a6fbd8cb3e26bc450fc6f7058315780df082cd389f7f5064ec
MD5 e34b8440bea660e3689e409962264317
BLAKE2b-256 4778e2c196200c7b6c702b9372064b43a5d0fca3e29a4e248382e5602b32daa1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa0d90565d64c4e359219dd88b55c9fede39c0c80c12537b84228a28e8a0a723
MD5 b3308c32bfef77bbed3f4c5d59d42c36
BLAKE2b-256 6411a19b3277b3008362da2ed4c579de2fcdde73939732000d370a2ea97552dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f51a46e0c3f305c6d08296bb70cf0e94e8fe4ce827acf32499e4d11164d005aa
MD5 67ee59c6ea01a9303e51d59df9f0d4f1
BLAKE2b-256 f23b5acfe74655fe578171e339d4bdfcacb81db2121291fa585988c435f7561c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pygeos-0.14-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/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7de3388b97880f16b98a4ad67bd81e1fb7e34b856cecef050db095e26d3fd1f0
MD5 c0153fab5c474f63a21f084c80ed8bff
BLAKE2b-256 3242fd5de1266b7c5e356fedb637676a075e9ff5de63b9a9511c3c9be1750b72

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pygeos-0.14-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d371cf676adece6ff956230226867afcd0fd468de2b6ead39b445f2f25f59e6f
MD5 74fdfb2a0846c86cdc117009010431bd
BLAKE2b-256 809d26ea498855ad49d0b4b07bd7bba72df3e6bfd8ee098db7f5e69cb71a08fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 726893ddf186fe396dea22b4ef76b71db73132d034efc4d22bd8bb3d5a6ab649
MD5 b094ebddefc7b993be7432997249711f
BLAKE2b-256 3b2ef281acdae482ea43bb7b446f1098fe11bf9e0393f47bcfa153be181a2b5b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e90515f20025fbbf5d4080e6a0192c93957f7b7d60279834e2afab5129b6163
MD5 2399b6ebc32b3c1e95bc7a6658eaa454
BLAKE2b-256 08b805dbe6d1383fc68ac41a297dc844a511d1322b85b23084983bc4280665e4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f27079a4211ad7c6b05b85915c74e6a549030a3281a2bc992218a46b1d34d82b
MD5 a900eed1ae0d417485ee365bc28166ad
BLAKE2b-256 504d7ddf8f3167494246297dc117b44e4698854f04f276b7bc2f89c10d00b4e1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 357188219364398dcadd2e03b3524411d578b1be98a9e0f0fa1fc877bf5f881c
MD5 a7d405b0a3837f59605fcf6de636a24e
BLAKE2b-256 e39571548a22b33fe8a005659ec3bc6aee44ec78b786f73d960ebf0ebfd09b64

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b951deb677c9209bbedbeac59be0e19681ba26385232bd657329560db7ca8b42
MD5 65cd5eea247efdd47905c9b5ba7f8b39
BLAKE2b-256 5c644149637a46740f6f5ed977c8fe1f1acfcea8c8e125919e1bd3eda7732567

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pygeos-0.14-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/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9a45f20437ee4bcae3b73983fdb141f1d2fddb1ea9019018c175ea9b520c44cb
MD5 377d90bea7327daab76bc1694b70d592
BLAKE2b-256 7c332ebba0702728e46492d4ad8332985500d17ec2b9fccac095354203c79fcf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pygeos-0.14-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pygeos-0.14-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b99dda430d097de75b0ae2a3015ab2f744168b867d404c2271369b5ca39778bc
MD5 c6243d35902954c57dc4639815d9590a
BLAKE2b-256 f0f3a6ead54453537541b5e41acfa5064c36c8154860e675a20242d94bb2d6dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc8939d6f4478918e65149f7eaea44b4a8a42d5ac210ab98a03fd49413f17375
MD5 1c18c04658a74fbe5fa9dc4db08cf074
BLAKE2b-256 86691b53d2963b94182907985688a6b35838b63f5d74a996b55f93982a1f4c47

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61f9151ace84c69b9f51fce07d1ec784335a06eb8f83efbf36d9812e15ee1501
MD5 2c43e3bf3a46913bdf31954650e2266f
BLAKE2b-256 59d957a66b7ed7ac4b9f3b20217c7c7d49f3cb156ab6a76319b1d42cb84f73b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pygeos-0.14-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e415467b6f73bcd0762dbb49d7d27188ccf1883dd94620d081a46b177b1d8696
MD5 87f080a82ecb45179ede12f211dcec25
BLAKE2b-256 31ec009216b50fd1b481a3b23ba2cb9b3b4d9bcb0a4152a6c5a8f7ee26589766

See more details on using hashes here.

Provenance

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