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

Uploaded Source

Built Distributions

shapely-2.0.2-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12 Windows x86-64

shapely-2.0.2-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12 Windows x86

shapely-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

shapely-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

shapely-2.0.2-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

shapely-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

shapely-2.0.2-cp312-cp312-macosx_10_9_universal2.whl (2.5 MB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

shapely-2.0.2-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11 Windows x86

shapely-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

shapely-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

shapely-2.0.2-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

shapely-2.0.2-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.2-cp311-cp311-macosx_10_9_universal2.whl (2.5 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

shapely-2.0.2-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86

shapely-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

shapely-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

shapely-2.0.2-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

shapely-2.0.2-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.2-cp310-cp310-macosx_10_9_universal2.whl (2.5 MB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

shapely-2.0.2-cp39-cp39-win32.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86

shapely-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

shapely-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

shapely-2.0.2-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shapely-2.0.2-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.2-cp39-cp39-macosx_10_9_universal2.whl (2.5 MB view details)

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

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

Uploaded CPython 3.8 Windows x86-64

shapely-2.0.2-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86

shapely-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

shapely-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

shapely-2.0.2-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

shapely-2.0.2-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.2-cp38-cp38-macosx_10_9_universal2.whl (2.5 MB view details)

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

shapely-2.0.2-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

shapely-2.0.2-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86

shapely-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

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

shapely-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

shapely-2.0.2-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.2.tar.gz.

File metadata

  • Download URL: shapely-2.0.2.tar.gz
  • Upload date:
  • Size: 279.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2.tar.gz
Algorithm Hash digest
SHA256 1713cc04c171baffc5b259ba8531c58acc2a301707b7f021d88a15ed090649e7
MD5 859665236b2525aa80bb33cb4a44252b
BLAKE2b-256 01c0ef2c5eff1e8381710e211a063d0aa3e7215cea9e6fd8c31e75bf5f93df85

See more details on using hashes here.

File details

Details for the file shapely-2.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: shapely-2.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea84d1cdbcf31e619d672b53c4532f06253894185ee7acb8ceb78f5f33cbe033
MD5 eb44339ca3e3d8a4030c57116167a827
BLAKE2b-256 c7d71bf4f48d83af09ce1af06c21752670fa8cdcafa72dbc452b809b215cda2a

See more details on using hashes here.

File details

Details for the file shapely-2.0.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: shapely-2.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 084b023dae8ad3d5b98acee9d3bf098fdf688eb0bb9b1401e8b075f6a627b611
MD5 5494cccd0670a1ce451da8bb58fee4a4
BLAKE2b-256 eb5e7aca7c3181f0bedbdb0931c825171b499c8a91b5aff667077efe81e75b4a

See more details on using hashes here.

File details

Details for the file shapely-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5533a925d8e211d07636ffc2fdd9a7f9f13d54686d00577eeb11d16f00be9c4
MD5 c1024d8655390e199d2f24964e6d0d97
BLAKE2b-256 29b7754f971ebbcb747ef38147949f90b30d2232ee5b9af9daacd558cc1705e2

See more details on using hashes here.

File details

Details for the file shapely-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shapely-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be46d5509b9251dd9087768eaf35a71360de6afac82ce87c636990a0871aa18b
MD5 7c0f74f23931f275de4714720e41cb67
BLAKE2b-256 bce0237b127f163737b3b4aa275943f4e75e56f50f0aa1c05fe997ddac6bd256

See more details on using hashes here.

File details

Details for the file shapely-2.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shapely-2.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e92e7c255f89f5cdf777690313311f422aa8ada9a3205b187113274e0135cd8
MD5 f8d78d547ce597f7b73822443401733c
BLAKE2b-256 5cd9d557c09d15406aad8252caeae181c2db2c562cc1b2ca6e6482b43274b25f

See more details on using hashes here.

File details

Details for the file shapely-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for shapely-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eebe544df5c018134f3c23b6515877f7e4cd72851f88a8d0c18464f414d141a2
MD5 40a20a6f556ac74c19675218f8c2ce17
BLAKE2b-256 cd77d36919327b4c6f5a92909ea194a1a4138bf0515bf0d6a5ca29f53cd0d879

See more details on using hashes here.

File details

Details for the file shapely-2.0.2-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for shapely-2.0.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 06f193091a7c6112fc08dfd195a1e3846a64306f890b151fa8c63b3e3624202c
MD5 3c40939fea26dd3525a05bb598d79c5d
BLAKE2b-256 a7e4d0fdebc973ccfefe9feb8bca0995e0071c37aabb40448d9f170f94058a0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-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.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dc9342fc82e374130db86a955c3c4525bfbf315a248af8277a913f30911bed9e
MD5 7f159b1a13a01ed9ae71dac2b1ac5155
BLAKE2b-256 9e39029c441d8af32ab423b229c4525ce5ce6707318155b59634811a4c56f5c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 45ac6906cff0765455a7b49c1670af6e230c419507c13e2f75db638c8fc6f3bd
MD5 c814f6fc46ef6f6766ebcf1f1ba5579a
BLAKE2b-256 482a6e590f4f13b1bd8ee39626bab5c1643b8746a4e469c61c5e38571f6cccd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 737dba15011e5a9b54a8302f1748b62daa207c9bc06f820cd0ad32a041f1c6f2
MD5 8ad0a3d5ed1c7ff77589eecc62da76de
BLAKE2b-256 8c4705c8bb8322861113e72b903aebaaa4678ae6e44c886c189ad8fe297f2008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa3ee28f5e63a130ec5af4dc3c4cb9c21c5788bb13c15e89190d163b14f9fb89
MD5 0d1c1158cddce47b0d8276dc2358202e
BLAKE2b-256 77e65043c8c8b7e21922559b4faa9011566b0df9315c3d51f15fa07816b4409d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94ac128ae2ab4edd0bffcd4e566411ea7bdc738aeaf92c32a8a836abad725f9f
MD5 18f2de83acad5577ccc6a45c6351901d
BLAKE2b-256 2cb1ca09649b4abe06366d41e90c3eee95a7741657404404a63bd0e8b53e32b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d217e56ae067e87b4e1731d0dc62eebe887ced729ba5c2d4590e9e3e9fdbd88
MD5 8602b79a5b20a033deeb9558a6a7d6e9
BLAKE2b-256 8150c7768a0a71c012464927228b6b949e55ad8d7ed50325b56b7224ea7dc7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5b0c052709c8a257c93b0d4943b0b7a3035f87e2d6a8ac9407b6a992d206422f
MD5 7c927a0446a002f1baeac2122c40d0a7
BLAKE2b-256 a0708ac9c70da0e9428b8827953c7345a2f9f0e62adeccd9ca5a69425d693b8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-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.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 34eac2337cbd67650248761b140d2535855d21b969d76d76123317882d3a0c1a
MD5 5f2b9d61c2dc43e838341df57b91dd53
BLAKE2b-256 2832c404f6d5566025b9d94eef0cc21039b0a4c10a392bad2f81edf778b3c2bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 72b5997272ae8c25f0fd5b3b967b3237e87fab7978b8d6cd5fa748770f0c5d68
MD5 c7661a2c7e6dccacd3a361fd6592e931
BLAKE2b-256 c0314f5e544c7d661a6007a5f003aa1824f41211ddeb10bcd5d967d300d6f30f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9a41ff4323fc9d6257759c26eb1cf3a61ebc7e611e024e6091f42977303fd3a
MD5 84732e18fc41b55465b97978c9a6411f
BLAKE2b-256 99e9a996a080d8478f4ab5ea82f64a5f39aaa8e05c99c2703e0ee03ec8c9e924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ef753200cbffd4f652efb2c528c5474e5a14341a473994d90ad0606522a46a2
MD5 949bd750a6f2c329b5197a551f57f16f
BLAKE2b-256 17d7ec615b2285a3b31d5a3a84ba89cc8006c0df1b99854ff26697aefcca3129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36480e32c434d168cdf2f5e9862c84aaf4d714a43a8465ae3ce8ff327f0affb7
MD5 3079a6daa6e66a38f07d9e33051ba6f9
BLAKE2b-256 14c80747225a0fa3f2b45cf9e6e5eef51f4b9ec3777f0eb2e594a6c90ff4ab53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 baa14fc27771e180c06b499a0a7ba697c7988c7b2b6cba9a929a19a4d2762de3
MD5 53aa80cb840124667a03ae9e078f2c6e
BLAKE2b-256 5b51b19feeebc5982d32b9c3dab7a55aacda38373b0cc814985aeebd95202c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6ca8cffbe84ddde8f52b297b53f8e0687bd31141abb2c373fd8a9f032df415d6
MD5 b54b257c1df8e72975a6cac5de9dc791
BLAKE2b-256 21f300a7b1c28ccd3c1807a6e8c1a616aee9ae448be9da860cfcf1b107874fb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-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.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 794affd80ca0f2c536fc948a3afa90bd8fb61ebe37fe873483ae818e7f21def4
MD5 027f03db6c2e7682f57f57b0ef7eca7e
BLAKE2b-256 51187a6dfefc08d5899dfca0cde9ada7a58006d06cccc0818e68b2a60bdba8e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b8eb0a92f7b8c74f9d8fdd1b40d395113f59bd8132ca1348ebcc1f5aece94b96
MD5 2c98945534424f31e88d42c4167a9d6d
BLAKE2b-256 1cb4e08e2d0732dcf2b9432f1a13ee85e1150e6a2b31fbb242e2adbf50843a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dea9a0651333cf96ef5bb2035044e3ad6a54f87d90e50fe4c2636debf1b77abc
MD5 0da4c9cec4065e594528cffaf5eb7648
BLAKE2b-256 0b4572b2f6c9c02e02d73edeb3e63cb724e5a67f84d1ecadb06a2309a2c022a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d41a116fcad58048d7143ddb01285e1a8780df6dc1f56c3b1e1b7f12ed296651
MD5 5c79b9f7245c46eb854347839d801536
BLAKE2b-256 1c23678ca61d390b3ae1c1dec54085dfb83047e54986f8c3a643ac138359ecce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd3ad17b64466a033848c26cb5b509625c87d07dcf39a1541461cacdb8f7e91c
MD5 183362a437b56454fff39c4026c5e72d
BLAKE2b-256 d23736bee542cf77d8902e1a83ae8fe6372bcf64a835597a3d9993297f27ee21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 394e5085b49334fd5b94fa89c086edfb39c3ecab7f669e8b2a4298b9d523b3a5
MD5 4aa5bc815a315413014d6ad9a43cf801
BLAKE2b-256 18932f3076f374dfc4509e1a3b05ba479b68f243dee6fe5e1b9a7e2eb8bd0693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f217d28ecb48e593beae20a0082a95bd9898d82d14b8fcb497edf6bff9a44d7
MD5 aa799d8bd8397ba43f28be51936d2009
BLAKE2b-256 ccfee72acdce088d7e3b6d530909f44e003293ded02dfb663214a8df5bc2970a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-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.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c6fd29fbd9cd76350bd5cc14c49de394a31770aed02d74203e23b928f3d2f1aa
MD5 4dfc4091d714b35462e22c25478d4f99
BLAKE2b-256 a46af453df473e317cc844420a003d2f558d8808404c9b7a43d3a6f806e51610

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 03e63a99dfe6bd3beb8d5f41ec2086585bb969991d603f9aeac335ad396a06d4
MD5 b48d10325d99cb14bee856811e09ee16
BLAKE2b-256 16c91d8fa4ff1d08d4a1541c18d8cd64de85cd442aef8ad6466acad4482401a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a21353d28209fb0d8cc083e08ca53c52666e0d8a1f9bbe23b6063967d89ed24
MD5 a0378f11f1ba645582d14821d6bd7709
BLAKE2b-256 d8413db53b03a0f2da266ca9ea35a779b0c4bb34bac06eb2778d4203ce613305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7c95d3379ae3abb74058938a9fcbc478c6b2e28d20dace38f8b5c587dde90aa
MD5 feca9bc7f0d44bcc5815edde85817c68
BLAKE2b-256 959f75b0bb894341f0714e0ca7b034bbdee318119da1756f010711083ab0eef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccfd5fa10a37e67dbafc601c1ddbcbbfef70d34c3f6b0efc866ddbdb55893a6c
MD5 3f915a23b10bd6054cf8f3496e5cc071
BLAKE2b-256 e625b10e9de9c366453be9618032cec74bdefb298b39247aa7a93cea675dfa27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42997ac806e4583dad51c80a32d38570fd9a3d4778f5e2c98f9090aa7db0fe91
MD5 ca238b8f3a3bcf7b9e5fa3591ef8c419
BLAKE2b-256 e30ee113e4b7b31317af964ae152fafed933c9d252ed8256444623ccab7ce9ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 87dc2be34ac3a3a4a319b963c507ac06682978a5e6c93d71917618b14f13066e
MD5 5da22e4044f5ed4b106a330a79743596
BLAKE2b-256 aa9292e420d5be37b0cb0266fab2fe1366496a71f5966ab1108c99ad28976b8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 78128357a0cee573257a0c2c388d4b7bf13cb7dbe5b3fe5d26d45ebbe2a39e25
MD5 28d0111780510ea278d5ef20b4dd0fad
BLAKE2b-256 8e79b002906cbc5f57892a75d698085172658a6d0a882ebcedf1df0205b85176

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for shapely-2.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5324be299d4c533ecfcfd43424dfd12f9428fd6f12cda38a4316da001d6ef0ea
MD5 4e603d516413b4c5c3a87bf99db075be
BLAKE2b-256 35fd55ab3686ef8c2f53e258bda56404a444eff50d811acd324726f9782b6f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0521d76d1e8af01e712db71da9096b484f081e539d4f4a8c97342e7971d5e1b4
MD5 f6bcd273db91221073830d170f3a614f
BLAKE2b-256 d2dd9f0bc472d4a501b0ea333ecb8d6366320c59b7d3200f9ae2026165526971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7d897e6bdc6bc64f7f65155dbbb30e49acaabbd0d9266b9b4041f87d6e52b3a
MD5 12e15654b36e62dcb460ef89c14e2472
BLAKE2b-256 2e1be05169491d43178ca7602ebcb5acdba9d3865786769e659f3d3c71d029c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed1e99702125e7baccf401830a3b94d810d5c70b329b765fe93451fe14cf565b
MD5 0d0bf6f4afd6c0376193d6a74494c1af
BLAKE2b-256 999da8f71f9d9eb4ee301f500d7bfeac912aec401ceb1c7ad8c7b0399ea8c7e6

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