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

Uploaded Source

Built Distributions

shapely-2.0.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

shapely-2.0.0-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

shapely-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

shapely-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

shapely-2.0.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

shapely-2.0.0-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

shapely-2.0.0-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

shapely-2.0.0-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

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

shapely-2.0.0-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

shapely-2.0.0-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

shapely-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

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

shapely-2.0.0-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

shapely-2.0.0-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7mWindows x86

shapely-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

shapely-2.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

shapely-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file shapely-2.0.0.tar.gz.

File metadata

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

File hashes

Hashes for shapely-2.0.0.tar.gz
Algorithm Hash digest
SHA256 11f1b1231a6c04213fb1226c6968d1b1b3b369ec42d1e9655066af87631860ea
MD5 b4d4c3f199a3c706a36952d619130c85
BLAKE2b-256 61766e635cc4ba33e8c170ef5934dad5c269dc5cb9607e878efb2aba12f78361

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.0-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 shapely-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9b6651812f2caa23e4d06bc06a2ed34450f82cb1c110c170a25b01bbb090895
MD5 c61fda73e0fb53538a5704c0a7be1067
BLAKE2b-256 f548b0915155ccdf2cf2c69f87a2ff7aa32e1d7b0aac7b2254fb4114bfb10de2

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: shapely-2.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 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 shapely-2.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ef98fec4a3aca6d33e3b9fdd680fe513cc7d1c6aedc65ada8a3965601d9d4bcf
MD5 c9da4bfd2d62f7d04013ed638234f90c
BLAKE2b-256 821730cc749eb629fb7cbf7fa28fe7ded6935a64b69dc5ab02d0293416987d4b

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13a9f978cd287e0fa95f39904a2bb36deddab490e4fab8bf43eba01b7d9eb58f
MD5 23a69a6ae9b3cb3c76616132ae929ff6
BLAKE2b-256 a6a62acc72d1c6fa357cb434cfffc148fe4ac7655dce7416183c4b50615de92b

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73d605fcefd06ee997ba307ef363448d355f3c3e81b3f56ed332eaf6d506e1b5
MD5 5a3f2f72fbd8aaec46149f1206cffa58
BLAKE2b-256 d55dd9434abd291339aae6a895d9993147220d81704c6fd9db25a84b95e8d6b3

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c71738702cf5c3fc60b3bbe869c321b053ea754f57addded540a71c78c2612e
MD5 72faec0f28a10f6e17f90aa09d1e7904
BLAKE2b-256 f7f48675870adac3afec23b2e9cdcbb990861acb0ef188db99cec228dc106c32

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40c397d67ba609a163d38b649eee2b06c5f9bdc86d244a8e4cd09c6e2791cf3c
MD5 7c8b9b456dc229be98a225b92910c49a
BLAKE2b-256 9a526030673fadc8ac8db7d6afe7a74118add0bdc7d8b3678b17108e078f2dc5

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 292c22ff7806e3a25bc4324295e9204169c61a09165d4c9ee0a9784c1709c85e
MD5 423db35cf6705108397191281679bb9f
BLAKE2b-256 cebbb54bf01a8b0a73f9bb59bed5c6fd0260536c9cc476809871975b897f4e0a

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 56c0e70749f8c2956493e9333375d2e2264ce25c838fc49c3a2ececbf2d3ba92
MD5 f371916aa63bb0a7f529748e05f61b47
BLAKE2b-256 b0192edf55badaa89f28820e5127063784e28ff26251ecf9e3c49600d405348f

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.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/4.0.1 CPython/3.11.1

File hashes

Hashes for shapely-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3d97f3ce6df47ca68c2d64b8c3cfa5c8ccc0fbc81ef8e15ff6004a6426e71b1
MD5 c2871ab9b57e49a5e6c4cdb906a21604
BLAKE2b-256 ce7b68aae4e5e0662aba2b1a1dff1d3f9508a55cc925cc9aba4bd96996267d5e

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: shapely-2.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 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 shapely-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d28e19791c9be2ba1cb2fddefa86f73364bdf8334e88dbcd78a8e4494c0af66b
MD5 3da9143ede5f35d48de63dcaf0f9f2fe
BLAKE2b-256 1bcbfe31c1ee7b4e776357dcc843ba8077747a467b9dac3a35b44151859aca5b

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eab24b60ae96b7375adceb1f120be818c59bd69db0f3540dc89527d8a371d253
MD5 8bb5041cf57509b0408d00cff5e4bc84
BLAKE2b-256 06070700e5e33c44bc87e19953244c29f73669cfb6f19868899170f9c7e34554

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b2c41514ba985ea3772eee9b386d620784cccb7a459a270a072f3ef01fdd807
MD5 11cde8d94db327a8c18da1471e7a089e
BLAKE2b-256 8bcb797c4eb74e3e169cd48f8f5509b4b2c54356ceea95907b3162ce7e7d88ff

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4ed31658fd0799eaa3569982aab1a5bc8fcf25ec196606bf137ee4fa984be88
MD5 09ae2f563a8fc5ca868551570f103041
BLAKE2b-256 e03f06d9cdc5c695438af9d07511466c125282d3d3f65b32fe0e8559d33f33b1

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a7ba97c97d85c1f07c57f9524c45128ef2bf8279061945d78052c78862b357f
MD5 56973847e6c7da1079eb5b1902dd6bac
BLAKE2b-256 a71a1b59663aa6487ad405a737c0de35b3158407d1253e35d787b0808e51b5d9

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7266080d39946395ba4b31fa35b9b7695e0a4e38ccabf0c67e2936caf9f9b054
MD5 ceb1178821cd78807d0413d4555a6b68
BLAKE2b-256 32b49c8d01e6049666af1cd0f3f5b2935c04fdbdcfd7fca0abe9f52741bd7f97

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.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/4.0.1 CPython/3.11.1

File hashes

Hashes for shapely-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5477be8c11bf3109f7b804bb2d57536538b8d0a6118207f1020d71338f1a827c
MD5 258c369e5f3142dcbdbcaf440f2f25de
BLAKE2b-256 b28e83d9e3bff5c0ff7a0ec7e850c785916e616ab20d8793943f9e1d2a987fab

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: shapely-2.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 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 shapely-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 73771b3f65c2949cce0b310b9b62b8ce069407ceb497a9dd4436f9a4d059f12c
MD5 0fa5abe7e070ccbe6fb6fc866f0c4948
BLAKE2b-256 664ed96dcbe5fd04fd94c5a17730df6688cc593ba8c894fd21dc57f0d4f0058f

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91bbca0378eb82f0808f0e59150ac0952086f4caaab87ad8515a5e55e896c21e
MD5 9ba74c265b48948a9f10971bb5211342
BLAKE2b-256 516a7a34b7ecb659aaafdebb805a62cbdccba8a92d8cd4d2fead50c4659b5d70

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4b99a3456e06dc55482569669ece969cdab311f2ad2a1d5622fc770f68cf3cd
MD5 a2b617134f47db7f21bf80a9b835d644
BLAKE2b-256 e96080a95d85f712bea40df97f6275cfd8313227aa6150a8501031c6fae9d4f8

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2287d0cb592c1814e9f48065888af7ee3f13e090e6f7fa3e208b06a83fb2f6af
MD5 e70be1f87b612003bdecf035dc26b055
BLAKE2b-256 ae6c470f767a2029964cf2c18d4fb29f7a642e961e9653bb9a7ba1b830d6d7c9

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fe8649aafe6adcb4d90f7f735f06ca8ca02a16da273d901f1dd02afc0d3618e
MD5 b3611e754916c54cf454ca135d4ba366
BLAKE2b-256 f5b42a056a4081c3b603ebe5d8573a94ca125d8f46626cba0b3ad6ae55c86c08

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a391cae931976fb6d8d15a4f4a92006358e93486454a812dde1d64184041a476
MD5 edf0912f22fb6bf9e3b208e3f7bf48f9
BLAKE2b-256 636b1b4f08fbc15645a639b7f372e478ee133fdc6525e287fa23240c27497b9b

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eaea9ddee706654026a84aceb9a3156105917bab3de58fcf150343f847478202
MD5 a547212df1e44f442b8f1e6d81c5603c
BLAKE2b-256 123b936b385d03d0d3377042f35b5191085368e29545cc0e6df97a3ed6bbf9e4

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for shapely-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 820bee508e4a0e564db22f8b55bb5e6e7f326d8d7c103639c42f5d3f378f4067
MD5 598a937141fcdfb8bb7ab571376ca1e8
BLAKE2b-256 06fc23cd69291437319c4f538e0c4a05e62012ee15fc2349b06ed71ce1705a43

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: shapely-2.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 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 shapely-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b1def13ec2a74ebda2210d2fc1c53cecce5a079ec90f341101399427874507f1
MD5 2220882cab36ff378abd3957cc99d3f3
BLAKE2b-256 780afd33902c1c2d805d55c436a572117ba211d2c15c3d7962823b93bdad873e

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f69c418f2040c8593e33b1aba8f2acf890804b073b817535b5d291139d152af5
MD5 7ac890372caadd7fe7d0370b870511a6
BLAKE2b-256 4e03f3bcb7d96aef6d56b62e2f25996f161c05f92a45d452165be2007b756e0f

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17d0f89581aa15f7887052a6adf2753f9fe1c3fdbb6116653972e0d43e720e65
MD5 1e3f0b3cacdabc32fb9703ab670fa163
BLAKE2b-256 cad4bc2180d79b977484708bf0262f169d2df09c3da871c0ee9c99ddd8ab4486

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44198fc188fe4b7dd39ef0fd325395d1d6ab0c29a7bbaa15663a16c362bf6f62
MD5 7165b6cce3cf661199d3714aa4b8055d
BLAKE2b-256 7b0c608397b3ef1b05c71885f8720656c2bb865fe2928ec2b5c04612a65e1e69

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21ba32a6c45b7f8ab7d2d8d5cf339704e2d1dfdf3e2fb465b950a0c9bc894a4f
MD5 98ff0c595689c002c78c68a15c9ffaa9
BLAKE2b-256 61bb6e2091c23a76967d3745a34ca55ca8962ad6bf569f844a34edf49c1437b6

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b9f780c3b79b4a6501e0e8833b1877841b7b0e0a243e77b529fda8f1030afc2
MD5 fee6c8adb7ddf024b667777c7db2be9f
BLAKE2b-256 726d85249cc7eebef0edb137ff80e3cb12cd0037612e1998c7794a5685308232

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f96b24da0242791cd6042f6caf074e7a4537a66ca2d1b57d423feb98ba901295
MD5 b096e659cabd854351531501177bf0f9
BLAKE2b-256 35f1bab7d299285c945bd748f11b44bc9df385f263555c58195c240df508c3f1

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 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 shapely-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 99420c89af78f371b96f0e2bad9afdebc6d0707d4275d157101483e4c4049fd6
MD5 00f0ce673fc255e9a9de7f4b6eee61be
BLAKE2b-256 c299dd8d32328810cfc757b7c8b0691e0f90a5e2add313b4ef2928de9ace7989

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: shapely-2.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 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 shapely-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 de3722c68e49fbde8cb6859695bbb8fb9a4d48bbdf34fcf38b7994d2bd9772e2
MD5 4a7555aaf32d7a23a256ad9a981ee3d4
BLAKE2b-256 29a7b214ad92e140959cc5db4fc94b5ec436573a93fd94d13643be69b23f6881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d486cab823f0a978964ae97ca10564ea2b2ced93e84a2ef0b7b62cbacec9d3d2
MD5 adb8cde6f2910da1d1aad817ddd5ecfd
BLAKE2b-256 228452692d8184cc76ca0b52160e503524bb7313f9219eefacb26a242e9fc1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c47a61b1cd0c5b064c6d912bce7dba78c01f319f65ecccd6e61eecd21861a37a
MD5 53d9307392efa993a25396fa5f060d9a
BLAKE2b-256 c106ebae7ee8acec522c39f0bfebd4f438650e06e470a142d16884058d27d9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 550f110940d79931b6a12a17de07f6b158c9586c4b121f885af11458ae5626d7
MD5 259a2483657834096fad0a67329b0c19
BLAKE2b-256 50b03ca66b2f6fccb65c5d9b531c263654064a2920b43340c49a41366b270ae1

See more details on using hashes here.

File details

Details for the file shapely-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e991ad155783cd0830b895ec8f310fde9e79a7b283776b889a751fb1e7c819fc
MD5 b5bea2c60f606bba9b5dc88fd553c008
BLAKE2b-256 3efca696bc217d94ee72c8a716ffe15f08b7112f6286a9af49a894b728716f65

See more details on using hashes here.

Supported by

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