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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

shapely-2.0.1-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.0.1-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.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

shapely-2.0.1-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.0.1-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

shapely-2.0.1-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.0.1-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.0.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

shapely-2.0.1-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.0.1-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

shapely-2.0.1-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.0.1-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.0.1-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.0.1-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

shapely-2.0.1-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.0.1-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

shapely-2.0.1-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.0.1-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.0.1-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.0.1-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

shapely-2.0.1-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.0.1-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

shapely-2.0.1-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.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: shapely-2.0.1.tar.gz
  • Upload date:
  • Size: 275.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.1.tar.gz
Algorithm Hash digest
SHA256 66a6b1a3e72ece97fc85536a281476f9b7794de2e646ca8a4517e2e3c1446893
MD5 91954e79b1e4aaefc5c9bcd3be86344d
BLAKE2b-256 10a7de139da3ce303101c357a9ba801328cba85cf6ace157da31a4007bca85e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8f55f355be7821dade839df785a49dc9f16d1af363134d07eb11e9207e0b189
MD5 ab930c0bcdf90f2179dae6575138ca2e
BLAKE2b-256 28810239107ccd32eb30085c99fbf22da686aa72278afcc2c8fdf06fa0fa6320

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 09d6c7763b1bee0d0a2b84bb32a4c25c6359ad1ac582a62d8b211e89de986154
MD5 659d9c6d6453ab268f7383451669a160
BLAKE2b-256 bcf1c9db479170a7288d6bd2adcd1892785a3206b7a6f7972e7478714cb39e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70a18fc7d6418e5aea76ac55dce33f98e75bd413c6eb39cfed6a1ba36469d7d4
MD5 3c222ce8c78ea8d8e4418ae2e9d84112
BLAKE2b-256 046705e96af1c4ee130e12ac228da1ab86f7581809d8f008aa3a9ec19ea22eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90cfa4144ff189a3c3de62e2f3669283c98fb760cfa2e82ff70df40f11cadb39
MD5 fe69f987822f2d2df9a98cf952c9a0c2
BLAKE2b-256 e97c76e54fa615a20ceb876e4de6b9f01a56926184bcc2076186c51c27ce39ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4641325e065fd3e07d55677849c9ddfd0cf3ee98f96475126942e746d55b17c8
MD5 4ad4e15c6b4367827f06e6d630bc1086
BLAKE2b-256 702139c2afae46154f824564d6b5b7213a84d083e243b42b5a1e76de481f91bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f470a130d6ddb05b810fc1776d918659407f8d025b7f56d2742a596b6dffa6c7
MD5 b22fb08a69e9862f3de0957f07c62e26
BLAKE2b-256 18a62e1761f21605e3562b223be7ad82f2edb5c9babdaa8b2d90979112be70f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d3bbeefd8a6a1a1017265d2d36f8ff2d79d0162d8c141aa0d37a87063525656
MD5 759b200dc9474b18a7708a991719b024
BLAKE2b-256 7be392ec80d72de8b881c52e47db1fd2f0519d49b6ad65c4c2a3fcbb9f88a91f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 502e0a607f1dcc6dee0125aeee886379be5242c854500ea5fd2e7ac076b9ce6d
MD5 151cc4628d513fe11f90041190eead9b
BLAKE2b-256 8a31ad4881727b700a9320a4139ac3483972901a9fdd17bb6a599aca810dbd85

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da71de5bf552d83dcc21b78cc0020e86f8d0feea43e202110973987ffa781c21
MD5 e5e1650b1c46b4903951b24b71e68f99
BLAKE2b-256 818a7ac076a86b2632f1872284c5e60ed5f2fc26094875a85b35d9fa17b52504

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 01224899ff692a62929ef1a3f5fe389043e262698a708ab7569f43a99a48ae82
MD5 6a229d30f1811747fc1a49669b35788f
BLAKE2b-256 cf0fc0456b1382d2a6815727cbd9c0713deca11653b330ba14b2cc165f0b9565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce88ec79df55430e37178a191ad8df45cae90b0f6972d46d867bf6ebbb58cc4d
MD5 f1e3603e92e14796a836ccf617114556
BLAKE2b-256 a8a5403728b5614b28083f6424dfdefec5fcf58068495fb03bb08532671c642f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45b4833235b90bc87ee26c6537438fa77559d994d2d3be5190dd2e54d31b2820
MD5 560674e7845e951bfd5d20f234478633
BLAKE2b-256 692e29633eca429c9e7eca1264df1764a7f179ec9ec186ba25d874342dcb1a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 865bc3d7cc0ea63189d11a0b1120d1307ed7a64720a8bfa5be2fde5fc6d0d33f
MD5 0849c4eb8f60b05bf535bbe87bcbbd83
BLAKE2b-256 ec41d59208743e737184e1b403e95a937aebb022b8459e99efbcd5208fc8be46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a6ac34c16f4d5d3c174c76c9d7614ec8fe735f8f82b6cc97a46b54f386a86bf
MD5 24814c02a7b7fd4b749371d639f33891
BLAKE2b-256 1f2adc3353c2431cf53e8d04bb8fba27e584410ca3435c9c85f76d71bf0c0e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b06d031bc64149e340448fea25eee01360a58936c89985cf584134171e05863f
MD5 8a03295139b23bd70bbf6516e1beab97
BLAKE2b-256 35da00737e3cd038d489c257a00829c27b3ff2d3ec264c78540a5d168a06922f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bca57b683e3d94d0919e2f31e4d70fdfbb7059650ef1b431d9f4e045690edcd5
MD5 ccb3c5b82c05dfdc80c9489827b49f4e
BLAKE2b-256 a7aeeab645c4075093584b7a65ab71cb8ff4563a015bd935c9b55dba14b2c1eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b50c401b64883e61556a90b89948297f1714dbac29243d17ed9284a47e6dd731
MD5 b23f0e91554915bd7b37efa88812b158
BLAKE2b-256 4163088ea482b1f2a046ec0576b173125a6485d0cc7e3868d50e74f4a89039f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ad81f292fffbd568ae71828e6c387da7eb5384a79db9b4fde14dd9fdeffca9a
MD5 fef0c08e198a5da2230bdaf02af6ec33
BLAKE2b-256 2df28ec281d357e8bb7d08dc8d727f0e4c8ef3dae7d3fa75c69c8e452bb82d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c43755d2c46b75a7b74ac6226d2cc9fa2a76c3263c5ae70c195c6fb4e7b08e79
MD5 14d108ea0eefec8b5b64f3be6a7ade1f
BLAKE2b-256 0eda055d5b854a9a702fed0965d37754b79967ecfd67fe8377264e6a00b521ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a70a614791ff65f5e283feed747e1cc3d9e6c6ba91556e640636bbb0a1e32a71
MD5 977050dad5cdafb89dbcebf37e0663e6
BLAKE2b-256 98e42d5b48e13cbcc976f468b995bb8bcfa8e758a8b73fe307af54184989158e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2569a4b91caeef54dd5ae9091ae6f63526d8ca0b376b5bb9fd1a3195d047d7d4
MD5 fc33a082972a62e943acd8b37625583d
BLAKE2b-256 eaaa45fbd031edf3149cb767d8b9f9db45d5faf0324d743c6b8fb0298cc022d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33403b8896e1d98aaa3a52110d828b18985d740cc9f34f198922018b1e0f8afe
MD5 cb74ce75e71012609b5b391d53fc8e6b
BLAKE2b-256 36a47e542a209f862f967d7cb8e939eff155f4294a27d17e16441fb8bdd51a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ac1dfc397475d1de485e76de0c3c91cc9d79bd39012a84bb0f5e8a199fc17bef
MD5 5cf1100d21e92858515a907ea01931b1
BLAKE2b-256 b0b4b0cedcc974f5d3fba51850f81961f48a1246b4c4ddf4cd3faef6829e4173

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c7eed1fb3008a8a4a56425334b7eb82651a51f9e9a9c2f72844a2fb394f38a6c
MD5 0fb593d2a614c9e7ca77587803738c37
BLAKE2b-256 2bcfc0315a82849de40897ebb09ef441fea4b995570443e4b596b9bc7c8a7fa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3cb256ae0c01b17f7bc68ee2ffdd45aebf42af8992484ea55c29a6151abe4386
MD5 2f47316adb4a2e010cc18f54e951de15
BLAKE2b-256 4985ee3d63f3a4affd146ddb01094c69ae74719c4462285e8aad4d3c6ec70a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d173d24e85e51510e658fb108513d5bc11e3fd2820db6b1bd0522266ddd11f51
MD5 dc78e8932c799b885237d19699531923
BLAKE2b-256 940f09e51e71c3a35818abe1ba75f2d2516a5c90b3596989920a0b116768fe32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a34a23d6266ca162499e4a22b79159dc0052f4973d16f16f990baa4d29e58b6
MD5 633a2aae0a1311a1848a1d5c9a48e019
BLAKE2b-256 8212ed1087cd4b9a6bc6f1f77b35078a49991672fbfa7302ea480322615cd909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f32a748703e7bf6e92dfa3d2936b2fbfe76f8ce5f756e24f49ef72d17d26ad02
MD5 7f0ce9030c8cbd6ce84b89ab70d29cc6
BLAKE2b-256 74c62099380d719a7e38cf0643df562b50d458f4960c2c7bb493e2fbe850753a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e55698e0ed95a70fe9ff9a23c763acfe0bf335b02df12142f74e4543095e9a9b
MD5 1019dbcabe68f181b8717f04cf8632f0
BLAKE2b-256 3105cbdfaf562ce7a0e0e89b47b3000d3445967c9fca6f906f833faba371053c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 193a398d81c97a62fc3634a1a33798a58fd1dcf4aead254d080b273efbb7e3ff
MD5 eaedef8254cfa491ad7cd28b6ff457e0
BLAKE2b-256 b46f08bb91f043854ec9e73b8d970437b6dca7323e44c63b53d2af6e80a9edba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b519cf3726ddb6c67f6a951d1bb1d29691111eaa67ea19ddca4d454fbe35949c
MD5 24b8ac6f122fa1c3d415fdadd133659e
BLAKE2b-256 bb9bc9dc1b43cd4364a247f7e82959f77b7ba63e6fe0b98435e3c98b08ba01d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 05c51a29336e604c084fb43ae5dbbfa2c0ef9bd6fedeae0a0d02c7b57a56ba46
MD5 21d22f9bfd93ebe32f7a5729a728955c
BLAKE2b-256 e287b8b8d8d57b429b01aa56b7d723075c09f33c988b8091bb6f790c83436909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b4f0711cc83734c6fad94fc8d4ec30f3d52c1787b17d9dca261dc841d4731c64
MD5 13569ded344638104394d67cdc4b972d
BLAKE2b-256 91d31f7c41508d42b81b4f454ad20a7f17a73225949805ea638125ac09188d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8b0d834b11be97d5ab2b4dceada20ae8e07bcccbc0f55d71df6729965f406ad
MD5 65e7f39fd80075c5e9c07e5548b9f8e6
BLAKE2b-256 1da4931d0780f31f3ea8c4f9ef6464a2825137c5241e6707a5fb03bef760a7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91575d97fd67391b85686573d758896ed2fc7476321c9d2e2b0c398b628b961c
MD5 e05b4c08ad88d80ed0aaca81e61c74cd
BLAKE2b-256 fafb7ce0aff96d317916ec75889068c9c6bd92268b20839efd270e3d4e7107ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a529218e72a3dbdc83676198e610485fdfa31178f4be5b519a8ae12ea688db14
MD5 bd9737dba25da999626819491535eda8
BLAKE2b-256 f7178bb86d26173982b81675cf6bcb0941ca144ea569a966d67774460121ba55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83a8ec0ee0192b6e3feee9f6a499d1377e9c295af74d7f81ecba5a42a6b195b7
MD5 6963e926ed5266147d9ba460e6b2b327
BLAKE2b-256 e67d4923f27c340339e1c896c77cafc8ed672c8d381a025bbab6c6ddcba27e8f

See more details on using hashes here.

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