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.

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.11.1.tar.gz (135.6 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.11.1-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pygeos-0.11.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

pygeos-0.11.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pygeos-0.11.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pygeos-0.11.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9macOS 10.9+ x86-64

pygeos-0.11.1-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pygeos-0.11.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pygeos-0.11.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pygeos-0.11.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pygeos-0.11.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pygeos-0.11.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

pygeos-0.11.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

pygeos-0.11.1-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.11.1.tar.gz.

File metadata

  • Download URL: pygeos-0.11.1.tar.gz
  • Upload date:
  • Size: 135.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1.tar.gz
Algorithm Hash digest
SHA256 c9371ce412ab28e2d0e90a9d65e42eb9933d0dc33edf36c575d56187c6183acf
MD5 533eb68e75cbfdf74887cd6c3c311eca
BLAKE2b-256 3c7e41cb357080322ee124a366d3b88b26e2bc075d6cb65b906f239e477417d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3332738da436a6fe6ff72e89f386f208ffea8c8ee169a811bb407e8f4a0ff9ce
MD5 fce831d798bcf48eccd79a2527c6d4c1
BLAKE2b-256 ddc3d5ba7972b8450f008f744b8229d254f396d11154ea787afe72410c330a37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 560fd1d23ee8633ccb1e68853d2a78d9babd70830810f163a16c8e7c89dc5831
MD5 1298f2d911eb335561bcf2724f74b62b
BLAKE2b-256 ef8c0d383382b477a19893030222162c0944059d93991e02fd84c0d16702c287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygeos-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1bab6cf7511a28adf7e7ddd231e5a03bf45b461ecf997ccd08e47e83c4ca86f
MD5 ddce4f951b72d35c4b92fe59fa635750
BLAKE2b-256 88f3d6e9230c61cd419719b9554548fc87dbdff61efef562656fe08c1dd82a43

See more details on using hashes here.

File details

Details for the file pygeos-0.11.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.11.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b8437c76a03481e218022ac4332a502e253fe90cef75202b0f497ade942a6db1
MD5 1b079b20b91dceb2253cc6da5b624212
BLAKE2b-256 4716786fd1e7a4d2bb3a3291a54bdf7050ec8a52f8b4e0f2d087893bffad2f34

See more details on using hashes here.

File details

Details for the file pygeos-0.11.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: pygeos-0.11.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 11c849eac8ceaba667209840132162a3a629e979c7da36fb86a8e740228e7608
MD5 3cf1b74d46389d7f1abe3f2b59f20f78
BLAKE2b-256 e4ee2070d90f3c3a9a5d51f2b084cdc718f7fb28fa69b30cf41563925ad61178

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69557d4003068f1504dbbb5f8ef904ebf7bd5182cb1cb3537e04960d75b753db
MD5 fe3e31e456489d3b221ec0c5802f283a
BLAKE2b-256 5b6f653e0bd1a8f2285432211d1d28bd7c88f3e4958811cecba9ae6233063d9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f0f02d0aa6c5d212fc62abdc92b3c89e516c30f4f389cc8fa2e12c6cf107749c
MD5 1801fd9398ba07f2c596eb85a9948edf
BLAKE2b-256 2b6af1e0cbde818cdc07cfe17b8fd180bb07159497350dcd6bd2a433bb15437c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0696e4c1dbd1252688f63d5e6adbd5260739212dfe7d2e51da586f894f8188db
MD5 2c6b81bf7641f0f4edd91c535ce80c1b
BLAKE2b-256 b469841734ff3f59b399387cd0c52270c6f12c079e6a4747ead7b9c4b9dd05e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygeos-0.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92072a0712fb33c1fa6c8f0a97eae173afb2b4f10ea9bd961b3a3d38cb124cd1
MD5 1f0e4aaeaef6a56b168febf15f214228
BLAKE2b-256 076aa0e819ae3a35ec89962decfd4e2f8dc12b3bbf00327ad98c95b522297bc2

See more details on using hashes here.

File details

Details for the file pygeos-0.11.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.11.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4844dbf576f706cba46c71c9b438db781caa53c38cfae34cd52c8fb4cb1f95d3
MD5 d15d05686dc4fdd5a8c7f0a81482abe6
BLAKE2b-256 60605a51a571a7321d96581652996f955a021c33e05e470bc247914ef030dc29

See more details on using hashes here.

File details

Details for the file pygeos-0.11.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: pygeos-0.11.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 74e409fb28ec0c3f381befa125d7730b5e36f3a8727882ea6769617f3e13237c
MD5 0eddd6a01e9e8c386ef333ea6b55ca3b
BLAKE2b-256 4819475790b11d54d8f6f521805dec143979fce971468cecda99eede3d83d7b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0dad1e31738292ca4d300fd76eaeb45c84107147a2ef64b8e05962218a1b1f2
MD5 f25cd46ed48daa0ada070349a868fd7a
BLAKE2b-256 6f9e2338e40575496006c1dae6a324515920c7f08623198ed5eb9daadff00bd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 31c65420319c6cc46cfb03fbd8ef4ef1d957defd3dd978c6ee4a0c4a3b264976
MD5 ea3d4cb49cd74a3659f8865914e9d015
BLAKE2b-256 f5c122a13c9f054d78b74ed0725564eb1f80d164a4d6d367238544bca118e883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0a58962fdb0d4096344e3224d2d54f7cb5d94abcc45093e9ad095ff2edfd9693
MD5 827bcaaafe179026872f1546a0bc480b
BLAKE2b-256 a7bc5e1f146f4cf7e183eebfabb8025c7c9014393af4dc19135809357c87795d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygeos-0.11.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e2b1d64b0ae6ba4049d6011d5a62d9d9d067986794fcef635939128aa18f00e
MD5 111b149e4ed52dc5cfa40d925fe6ac98
BLAKE2b-256 ac645ad0a8a943e6790423c8a8c6d0e857eb9fcb2e5aca7cd0f99c867df8a94b

See more details on using hashes here.

File details

Details for the file pygeos-0.11.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pygeos-0.11.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4559d0ab17e82f9d82e0bd622a3c2313bd22b5d84b4b3b0332f019914b100243
MD5 2074aca1349ef1bb4d50500de287ef90
BLAKE2b-256 9fde0a5d575664238ee3f1adc885a88967eaf810a5992f863d5a99d3892b1b10

See more details on using hashes here.

File details

Details for the file pygeos-0.11.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: pygeos-0.11.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5be8e979dcc08f9a4c26347cea5354de2e331d1763ad81bf027612f906f67851
MD5 ef3e755f638e9d6c7aab954facfbfada
BLAKE2b-256 3072a452bc6603eb036d25e3f00e28784521c0b52ca7c7178b13447ca93d9266

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 704c228d31f3919be32b6e8b0b48b3cb16efae7de74ad8f241d9e44610761adc
MD5 6cb37c5475a3779d10aca555e836d4bc
BLAKE2b-256 c4e933ee3803e4c9f503084b696be3e15230a790f0854447698f0f86bd433f0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 caa95c55680837ade5200c21c0e9d020ac574ae793e290da8d3babe1ee723082
MD5 73068a1ab39cb28578356c6f693de5e3
BLAKE2b-256 07accb6228c44fe4d440c7ff73440ed75ead601c702a127f9d6d161ab666bb7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 24c2ca4bbd39aa69bbc9da18c0c31dc7084cf5590755641af8bb34a48bd65c9f
MD5 bccf48464ca52577fdf0c959b38e7692
BLAKE2b-256 40b7cc86fa1b8d8a212d5e68f898512294b9e737ea1f628194e652a37665a4d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygeos-0.11.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d768ba4e417443293831cb6609f0f454b6827bd124bdd079cd2197c19faf8eb9
MD5 e0320d572b7383dfdadba3074290590c
BLAKE2b-256 2ca236284599c557a6030e0195d276a29d7bb74f0bc70b201a595b1e63d83438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygeos-0.11.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7253204855edd1fc1efd977a413ac918865de62aa4a8eb86d5f375fce0c57d9e
MD5 38381e436461d02cd5e71f922918918a
BLAKE2b-256 6da327f21f348321f99aca412297245d124ea6afe346f488dc56f4f78fc77e19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e0073b643a08c4741231bedb905f8d152a13121a133be72e7e107437a698f48a
MD5 33baf728e6a17904ba046a41303329ff
BLAKE2b-256 0bdab6e744396e2ada511c58da0cca66b7675a795ebf9ca996ecb8a4c1d9b456

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 360d9b1037e8d62c4b6b6f7edf81d531eaf0422ebee2c56f1af0ac978b2824b2
MD5 23a636727b4fdd215298fa6ed95d7d3b
BLAKE2b-256 8d4051052ff73ca238b5901bf1f2a0e7f0c3ef10207c372d23005d1607bbd2c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5c0b336f60ff1c8fecc07f39f559af00cc2bee2c9b76f03fbfb780c0316aa6f6
MD5 61b139de87016f7fa67126f08ac22142
BLAKE2b-256 189d54cec081006d450f79862c97a3d52143b5722db20944f2adb568bbd1d678

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a06b979912c277731a8f779ba56733fa59e1d6bc461f6b5c24e142cd11ad9902
MD5 2bbc1eb0ec37e6a1cfba9f05bd341077
BLAKE2b-256 17f7b43f6083de444fdbf21b1c9eafb1a21fff0bc56ade4c84915a37ffa5c4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygeos-0.11.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4d4c43432bd30a2f738e77725d6a787e6c46262e19ada0ebc165855f0b3811d
MD5 aaaefdc910180b2f543047a76c091a4f
BLAKE2b-256 a3718d92291c142feb3fb228762a68f95b3909f4d3a76a4d1523205bb8af5d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygeos-0.11.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c5e9380ad467d5dc5019a7f6956d13c7359596da1a933504e01dafc850282e7f
MD5 9407764cb70517242f7c635ea8a8c457
BLAKE2b-256 9286d127dc9657db501f0baa6d3fddde266c3417eac218167af34933368a72f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e97fcda66f110af34156ddec877c792ac4bb5ab84626c02083002f53dde920f6
MD5 b48bb95b81b4af86bf3cea12c00230a3
BLAKE2b-256 84cdd3ae94a2240d38f3f19b78a6b90ceb9f569afee7034ad81146a20cfeacdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygeos-0.11.1-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.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pygeos-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba6325aa5caa78f7789bf1b4d7e866aa9c84a3ada22bad09465f9f5aca5b5576
MD5 3f71c6a519aea839e0cb46be8e569d08
BLAKE2b-256 16e514d369f25bcfed5fa5e165b6c11b66e1696c1e9290b31c9e6de1122acdb3

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