Skip to main content

Manipulation and analysis of geometric objects

Project description

Documentation Status Travis CI status PyPI Anaconda

Manipulation and analysis of geometric objects in the Cartesian plane.

https://c2.staticflickr.com/6/5560/31301790086_b3472ea4e9_c.jpg

Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. It is using the widely deployed open-source geometry library GEOS (the engine of PostGIS, and a port of JTS). Shapely wraps GEOS geometries and operations to provide both a feature rich Geometry interface for singular (scalar) geometries and higher-performance NumPy ufuncs for operations using arrays of geometries. Shapely is not primarily focused on data serialization formats or coordinate systems, but can be readily integrated with packages that are.

What is a ufunc?

A universal function (or ufunc for short) is a function that operates on n-dimensional arrays on an element-by-element fashion and supports array broadcasting. The underlying for loops are implemented in C to reduce the overhead of the Python interpreter.

Multithreading

Shapely functions generally support multithreading by releasing the Global Interpreter Lock (GIL) during execution. Normally in Python, the GIL prevents multiple threads from computing at the same time. Shapely functions internally release this constraint so that the heavy lifting done by GEOS can be done in parallel, from a single Python process.

Usage

Here is the canonical example of building an approximately circular patch by buffering a point, using the scalar Geometry interface:

>>> from shapely import Point
>>> patch = Point(0.0, 0.0).buffer(10.0)
>>> patch
<POLYGON ((10 0, 9.952 -0.98, 9.808 -1.951, 9.569 -2.903, 9.239 -3.827, 8.81...>
>>> patch.area
313.6548490545941

Using the vectorized ufunc interface (instead of using a manual for loop), compare an array of points with a polygon:

>>> import shapely
>>> import numpy as np
>>> geoms = np.array([Point(0, 0), Point(1, 1), Point(2, 2)])
>>> polygon = shapely.box(0, 0, 2, 2)

>>> shapely.contains(polygon, geoms)
array([False,  True, False])

See the documentation for more examples and guidance: https://shapely.readthedocs.io

Requirements

Shapely 2.0 requires

  • Python >=3.7

  • GEOS >=3.5

  • NumPy >=1.14

Installing Shapely

We recommend installing Shapely using one of the available built distributions, for example using pip or conda:

$ pip install shapely
# or using conda
$ conda install shapely --channel conda-forge

See the installation documentation for more details and advanced installation instructions.

Integration

Shapely does not read or write data files, but it can serialize and deserialize using several well known formats and protocols. The shapely.wkb and shapely.wkt modules provide dumpers and loaders inspired by Python’s pickle module.

>>> from shapely.wkt import dumps, loads
>>> dumps(loads('POINT (0 0)'))
'POINT (0.0000000000000000 0.0000000000000000)'

Shapely can also integrate with other Python GIS packages using GeoJSON-like dicts.

>>> import json
>>> from shapely.geometry import mapping, shape
>>> s = shape(json.loads('{"type": "Point", "coordinates": [0.0, 0.0]}'))
>>> s
<POINT (0 0)>
>>> print(json.dumps(mapping(s)))
{"type": "Point", "coordinates": [0.0, 0.0]}

Support

Questions about using Shapely may be asked on the GIS StackExchange using the “shapely” tag.

Bugs may be reported at https://github.com/shapely/shapely/issues.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shapely-2.0b1.tar.gz (260.7 kB view details)

Uploaded Source

Built Distributions

shapely-2.0b1-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

shapely-2.0b1-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86

shapely-2.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

shapely-2.0b1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

shapely-2.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

shapely-2.0b1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

shapely-2.0b1-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

shapely-2.0b1-cp311-cp311-macosx_10_9_universal2.whl (2.4 MB view details)

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

shapely-2.0b1-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

shapely-2.0b1-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86

shapely-2.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

shapely-2.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

shapely-2.0b1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

shapely-2.0b1-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

shapely-2.0b1-cp310-cp310-macosx_10_9_universal2.whl (2.4 MB view details)

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

shapely-2.0b1-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

shapely-2.0b1-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86

shapely-2.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

shapely-2.0b1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

shapely-2.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

shapely-2.0b1-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shapely-2.0b1-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

shapely-2.0b1-cp39-cp39-macosx_10_9_universal2.whl (2.4 MB view details)

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

shapely-2.0b1-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

shapely-2.0b1-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

shapely-2.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

shapely-2.0b1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

shapely-2.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

shapely-2.0b1-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

shapely-2.0b1-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

shapely-2.0b1-cp38-cp38-macosx_10_9_universal2.whl (2.4 MB view details)

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

shapely-2.0b1-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

shapely-2.0b1-cp37-cp37m-win32.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86

shapely-2.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

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

shapely-2.0b1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

shapely-2.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

shapely-2.0b1-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file shapely-2.0b1.tar.gz.

File metadata

  • Download URL: shapely-2.0b1.tar.gz
  • Upload date:
  • Size: 260.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.15

File hashes

Hashes for shapely-2.0b1.tar.gz
Algorithm Hash digest
SHA256 624dce6c1bcff6f461fc3ce45f6477baa71754b46fcdca40d481b9a3573c871d
MD5 943bc0332361d71c59cb9bbb187b0116
BLAKE2b-256 8aad5aa421b192f5458b0f0f8d54ecaf87dbb03f1ca907fd794c8926b79aabbc

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 50040535a71661d9a84e482cb9acab4a14f763266e1751ca46baec86f78a3470
MD5 b1f15d6f3bb064de013accfb3f958903
BLAKE2b-256 5409a8b8bbd64fe67a4f5ceedde05ebf14f7a100e56c8c6434583adf1a46bbaf

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-win32.whl.

File metadata

  • Download URL: shapely-2.0b1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cd61870ebe17bc42c972ae7c30dd5459da4455e24dff6a2cce264aac18299e90
MD5 5ac4e43ed470ed12dfda0f3511765703
BLAKE2b-256 49089075a7fc7b7a3048011dfdaf65db135b872125bc67c4b5cff42ef218fc2d

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78398ff5ba4f7f7f7906688aebacb89d8fbe57942f2700e2739b2fa56c94ec1d
MD5 6562fc71eb3677c75c299ea6c76e9136
BLAKE2b-256 00d260336cb480fd9f8ae6d13c6b21e8bc642d5d543b4a7213d49330a24c0e78

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 976e21bebc8088a98ed17f704db68c72e18abf92076e8c40512158baca43ae77
MD5 953999916bcd94dc2fc789a142f0eac0
BLAKE2b-256 b520e62402d935aa5e445dd7e3d96c319fff400d850f834a1dbd111865a58d77

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 053ae5e9a190709909ca40bd9e169d9315458d24553af64efa3fa29fd0658d8a
MD5 6bf14f5c80c8fb8095a9353e2edb2d59
BLAKE2b-256 0b6da253c71cc4d459a85d7097719f14237f3fadd635ae4253c28be3b7e6b5ef

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3b33121313f762e015e22fbf3a29af28c96f30c16c6d417aec56e8f4f7a65f1
MD5 fc97b91ed905ffc5fe76605204086ed6
BLAKE2b-256 534cf316ff0ec55708a1099c635e7e744cc0027cb5b924cffbe8abf49b86a605

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b949d9c0f65c3df6465f3edeee1bffbe81d4debd57c603d62cca215c1c80df5
MD5 f6ed18ee2b40b5ba0fceaacb91731101
BLAKE2b-256 0194411d5d19e8dbeb3d334c850c7635cb6ec42524ffebdd052483d46b03a14b

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 30b0be8d356f7eea3cb434ad446f1a960d4f434f1ec5416457edc336ab5ab5f6
MD5 baaa5e777600eb4f9d803e502d3d55a6
BLAKE2b-256 d2f78bed321cb9c9c4e680876b6ef6031de11eee2b88eb09018def6a8c9d0cda

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f0cdbe3623bdcef9f3d11293e3b741fc6dcc738d284de48874f59e6869905c5
MD5 b423d8155f91768929fe9d6615e5ffe4
BLAKE2b-256 2b2a15fcc1c79f03a2b6bc7e78f0f750db4a23c487b70f587c79a297f571af07

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp310-cp310-win32.whl.

File metadata

  • Download URL: shapely-2.0b1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 78f05849f93aa0a64f6cddab338cc7b4bb17a83fff1ab11085b9944cd3eb2f47
MD5 8e6b0d8b234b1ec9f0f63be693a5df4a
BLAKE2b-256 081e158359b1ab9ed242f0475af38c859aafa3e4acf46b4da08232a24b935168

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4218010c1c1a420f2726d06008f3213807d415c9d77b83bb3c524a1e67f8b7df
MD5 2d29665661286b917bb52f5ec683e639
BLAKE2b-256 795edbd99fb80a360b223c22d954fc86f73653dbe62beb723306bc84a85d3bfe

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b76d8dd5cfb8c4743c0b492663bf5260ec02618a37be0c8ac5b5abe52c50b33
MD5 d44463a3807d3a1f56fbd57b0dbd4309
BLAKE2b-256 c7b58b2edf017c4d5ce46d98ae4c64dbefa963c1283314fc608381a7d3d56324

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35e2d6fbde43589a3f8de4a142184c602e733f3a8c95a23388fdc47516e9b6ce
MD5 dff2b9230526a622dae79045eeae0aa0
BLAKE2b-256 164ae1709f3515b3d82a4a389906860d0ff2a66e66785a81e1a8481aef76c819

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 827c1ee1dd88cd5a65c3ec2e4e874bfcf69628dbf9d65130442ebe46fed3c3f7
MD5 d8dcb2cf165711e49a5368186025125a
BLAKE2b-256 13e89b55ae7a811ea50daa0524ff33576a74fad6861b60977400c3f4e60d4d93

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cdc3d0e45d574b5d25d1aa4bf1ba9c3c1692080414cca43dca6a82c8dc01068e
MD5 b43b4cb23e7270b418affc6411e99cc9
BLAKE2b-256 699bba6359e51e68d0e6eeee2eb213f8cafce565eb73b13ee68822d7d2b74d0c

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f95da1324de69b201e9870f588c261706786869261f5859f68777c3e37537852
MD5 652b4e667afb28608f630f09e834c1b1
BLAKE2b-256 71015937386b687d8e41b5951fb14f9a2d1437252f9890a1f6469bd664da77f9

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-win32.whl.

File metadata

  • Download URL: shapely-2.0b1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 edba1927b9cfa95fa5f9cf64ddda0da6b19b3ea8f39f15d59431ecd6e2d45823
MD5 f07b58bef047ca5a4f4ed5213067352e
BLAKE2b-256 952a076493512437751669d341df6d43d2dc09fe2f58e9475d113cd9b0969d04

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83f9ecfb97c429221d49383f6ccb2f9044a5bc5fd3c1e5c47cccce7f4d172072
MD5 01cb6aa9d1b7596f1e012885599abbe4
BLAKE2b-256 6ecc5b709ec40c7ec2b2f12b6a2a4449cbe471535c2cd628fa2a013316cf6725

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72ebacdcf94e19aa9bbb24694d76784d3cf47e1b2a9ba38f05ede4024bdc08bf
MD5 fd8d81467b7c59a1c43e813e3f24e7a5
BLAKE2b-256 bc7a68ef76765c26d33fce1a8abaf7d220beb5f6b8e6f124145277c85868ea77

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 573424da9842875714f5cc6eb06e2fc447c701c18feec4dda2d694158a814952
MD5 8c3f70999640a1268742bf0c16eabca4
BLAKE2b-256 90c9fa9df1a416ac8e08f4eb9beb01ac8219731b85dfd78230d96510a819fc1c

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d62168810bce3a58a64ca8a5a100f630242c4c510b5fb458d775abb273cb6092
MD5 47ca9392c7593434e857e23a74037ca9
BLAKE2b-256 b18f1d755d7253f16977d8184425df6f4c2fefcdb1f7eb9532eaa6a2b68e4a43

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe61c7eaf638004d6f5bf380de6aade06811919d8d4a0c19b609e870340e8ebc
MD5 9579648890756329a4ba040f1d35f763
BLAKE2b-256 ff05d2afcddab63bad0c41e1342756fa3a2baf39339c93d48702f6eec12d9ead

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2c7340d5775a2d2cea0f70da2169c7ad431d34fd3b4818efb588f52852e9dd1f
MD5 91d6c425c9b0bc92516ceb3af8051b92
BLAKE2b-256 92186992c3b85349152047cf252f62894125bb84bc935342ed078dc9bc32f1b8

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b1-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.9.15

File hashes

Hashes for shapely-2.0b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d59cf622a37a5a066b8c7e3d3e3a21aedc6c610b23c4c7b31c2471f8d2294bd
MD5 0d3cadf913d4e9714e9aa99b6018703a
BLAKE2b-256 7ce9067a08f56e5e0abfa8eea6448711f00ef51c36f413b2b4b87db2beae0f09

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-win32.whl.

File metadata

  • Download URL: shapely-2.0b1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3386378e7f13f38fe7707f3d2afc041b9572c7c0989fd2c8b0cbd335a9ab2b4f
MD5 58d178ae074e7aaacd100eec602b50b6
BLAKE2b-256 a513ef9274dd7b1c42fc354630cc67d43a5b8b93a4afdeeba6964704c736b517

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d31b7e3cd519c20be4798769c9bebab3b10856c4fcb95ad6419eeea150696076
MD5 b8e98b7356b7d0debc40fc5389f75ae1
BLAKE2b-256 6d1c8fbd0d85856891a6c96b11e9fec2ef0588efc8bafc7127cb88d648817ac5

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dfa574e7ddc7bb1d6ca7f9b0236ed3f48a5eca4f39c39fd0340a6be33cb92360
MD5 381bf1d1fb7841a54bf8468d27ea07df
BLAKE2b-256 d9c24f6e2c9b63e3241020526597c3c242b7743d1e9bf43d943d7517e1485803

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba1a8aa7b56e14b9e8a274962d12d9428be5906bb3773b3552a34efe46672b6f
MD5 afe5a6f9176516b8835c74768f4b57db
BLAKE2b-256 96b49d9f439ec89ecae9c7b2a14836e4e0767e368af471d018b64aceb8156337

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc06b1c4206b7be4681e9107b72e2dc987d8f6e2f04f54323565d569af2b3543
MD5 e25ae96b90ad8eeca2d0ff03d9c676d0
BLAKE2b-256 b36d5cdc287dc59d86b78b030256f8bbacc5122a2b248416fb5ca705f677416e

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1a9bcf95ae12f74e492c6be19039b9373e9732712d6fd2450e6c31733335ddf
MD5 4adcc36f83902473b64c789d383540c4
BLAKE2b-256 ba986275a0686d90a0a2f38a43a35a069c1261ef168ee53c487f685a7af391fa

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aead4839e26d6e90144a89d156f04c7d211d5eee10b24209bc4502f4ce7900c4
MD5 459d29e56511578b902bd7e75c69b6e2
BLAKE2b-256 2470a3698faf126fead6fe7e81c5f8bdf4f8ef114c7a8316f461498de04afdda

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0b1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4f78ec0a64159935b43a2f3be1a46c7d48124e7b1f97969a2e1a202e0580a68c
MD5 25f0a15da422d1ffc5dc8aa915c1a2c1
BLAKE2b-256 39c52b151a161c7493597df07a2d0f9be2967fc407921769cb374cdc386a40de

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: shapely-2.0b1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for shapely-2.0b1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cba3c9a4acd8d5ec35e42bc275b2f99f947e129400889136615be4da096b1610
MD5 a6fd032a5af8348140c68f6556939b32
BLAKE2b-256 90038c4d4faa5c224395e4399cf27e1c3194a37be89da90cf4eb9c0f2de5fc41

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 251f3bfb29806fdaf3ae3bb42e0017f49c19c9a94ebd07173bb60c9661332092
MD5 6462f5614a43bf76cb46214617a008fa
BLAKE2b-256 4fe893b39065222834d9bbf6ede35a7e4b85722c048a85148c4cd847bf9c27c6

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 562779f1d63d5f1387ae885f9687414818632e1d6df66bc15c95488d1c6f85f0
MD5 0428bcc1d8e8522797f5da6cb9aa9001
BLAKE2b-256 2919f565c580c6754bd30a9777db2f16102f6f67deb4bbf9463b5b78e5e095cd

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd2a3d95dffe66d3fb4b0db1539a419643ae095820e99277fcc7a616376ca2d1
MD5 ff4d2e1ccb881841e234c0959d20b45e
BLAKE2b-256 281794211469e3a59843ce61342d089ea8f833b5e20c07f685fe32cb9d81de44

See more details on using hashes here.

Provenance

File details

Details for the file shapely-2.0b1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0b1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69c69d670cdf93b8a9a30b366766f2f31d40cd7c3eb9a4b27100bb3a90a6ec0e
MD5 5a1247349bb2270d36232392504792ba
BLAKE2b-256 650b87ac8d221ef7f2edabb719fc2fa7edd4389a4eea9bdb3eaba13a3d1d9d92

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