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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

shapely-2.0.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

shapely-2.0.4-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.4-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.4-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

shapely-2.0.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

shapely-2.0.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

shapely-2.0.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shapely-2.0.4-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.4-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.4-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

shapely-2.0.4-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.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

shapely-2.0.4-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.4-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.4-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

shapely-2.0.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: shapely-2.0.4.tar.gz
  • Upload date:
  • Size: 280.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for shapely-2.0.4.tar.gz
Algorithm Hash digest
SHA256 5dc736127fac70009b8d309a0eeb74f3e08979e530cf7017f2f507ef62e6cfb8
MD5 748b3d9f73433befd2a7364e446a18d7
BLAKE2b-256 497e816fd1c135b062c80b72e17b7330d9a719cd413158afa580f4aaccf59aa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.4-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/5.0.0 CPython/3.12.3

File hashes

Hashes for shapely-2.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 03152442d311a5e85ac73b39680dd64a9892fa42bb08fd83b3bab4fe6999bfa0
MD5 ba7fef2838c7708eeb9308a92ad8c32a
BLAKE2b-256 81356d8b5cf9a747b94e8940619d914280fc4ce8e86e411ad19d39e7e8be036c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4f2ab0faf8188b9f99e6a273b24b97662194160cc8ca17cf9d1fb6f18d7fb93f
MD5 d46059cbf99fe277f55287e239aa6dcc
BLAKE2b-256 8f32bc72211f652ebf0fc487b015cc5fab9703d1c8c6cf6b5c57c5d1261ecb68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3e700abf4a37b7b8b90532fa6ed5c38a9bfc777098bc9fbae5ec8e618ac8f30
MD5 c59a66c6564f07cb226808ac4554fe78
BLAKE2b-256 1f119f70f606f492ee6fd8071df4f963843c92b16344bf9cf30016a3b0a4f63f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c75c98380b1ede1cae9a252c6dc247e6279403fae38c77060a5e6186c95073ac
MD5 1f27c0cb27fae9d503f7db2061374102
BLAKE2b-256 50a5312ebc480f3069bd660e64e5cbde0c28a90aac2975d242f5ff470325a348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0776c92d584f72f1e584d2e43cfc5542c2f3dd19d53f70df0900fda643f4bae6
MD5 3e45a2f1f3098e90916ca7825a3520b4
BLAKE2b-256 6a6bb6f4371346ad8ad513e8a8a01118cdae9e25510a01cc108f61321e59f8e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41388321a73ba1a84edd90d86ecc8bfed55e6a1e51882eafb019f45895ec0f65
MD5 1a8685e120e581772f1c69184b1c35f0
BLAKE2b-256 b27f2479812b618c61d72676749ae644671317af86683eb561183c4f7188cc1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5bbd974193e2cc274312da16b189b38f5f128410f3377721cadb76b1e8ca5328
MD5 8b03f55e5d5b6ad95b2f1eb265946686
BLAKE2b-256 3ad559efdf4d86cc6fb0c0e5ed2fd376eeda897ca32f7852ff4acba980bc87cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.4-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/5.0.0 CPython/3.12.3

File hashes

Hashes for shapely-2.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c52ed79f683f721b69a10fb9e3d940a468203f5054927215586c5d49a072de8d
MD5 1771f58b92397099bdc4cd5220d83893
BLAKE2b-256 6a5c3330f499ca860f0b92db4ceaebd7090096a83c1ea3ae7d8d4c6111761b82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 63f3a80daf4f867bd80f5c97fbe03314348ac1b3b70fb1c0ad255a69e3749879
MD5 71b85a93b3748ba4e16aa57036f53247
BLAKE2b-256 b1c10136e1f8899f88d681f6872abfc210232d5b92fa879757827a23abd12f72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4310b5494271e18580d61022c0857eb85d30510d88606fa3b8314790df7f367d
MD5 80de9b150b0815e6037832d0728e3563
BLAKE2b-256 d5fbbcf6a8164ed307c99f1a8fabe5acd86ac99a33f52530a3ca84b0936f95bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 790a168a808bd00ee42786b8ba883307c0e3684ebb292e0e20009588c426da47
MD5 17c1b6f27ecac78d3f75649922f49099
BLAKE2b-256 2f3a7a776b1733e0edfe386f109e3af3a40eaa2b5bda5b33827a8dbe630a5116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58b0ecc505bbe49a99551eea3f2e8a9b3b24b3edd2a4de1ac0dc17bc75c9ec07
MD5 032b15b2a4a0adb22dd9a1cbd5b2db1a
BLAKE2b-256 2afbe3f72b10a90e26bb1a92a38b3f30f3074ebac6d532f87848ac09c3e8a73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d56ce3e2a6a556b59a288771cf9d091470116867e578bebced8bfc4147fbfd7
MD5 dc58d39545991192471dd33a63ea1305
BLAKE2b-256 93fdb205661ed60294a344406fb04227042fcede9501e81ee1e7018e9159455a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 de0205cb21ad5ddaef607cda9a3191eadd1e7a62a756ea3a356369675230ac35
MD5 d9d8b1120c5f92d1a4397a10acafe591
BLAKE2b-256 12f6b1b54fd7749e9cde332d8f55dd417cba189839b9a8a295ea4dbbab8a5fa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.4-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/5.0.0 CPython/3.12.3

File hashes

Hashes for shapely-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 30982f79f21bb0ff7d7d4a4e531e3fcaa39b778584c2ce81a147f95be1cd58c9
MD5 ffa76ca76c03649cf7299cea9104af16
BLAKE2b-256 6f6efcb8ae881480a7b501d6f92fc6b7eb082cae8b66b3c43553f6412e1f4d0f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 92a41d936f7d6743f343be265ace93b7c57f5b231e21b9605716f5a47c2879e7
MD5 b435493fb7be61947305c77b9a050c1c
BLAKE2b-256 7885ab34b973129fe08854b45af0ba1905b8baefabb7dd463b5eef9358e3b215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2b4431f522b277c79c34b65da128029a9955e4481462cbf7ebec23aab61fc58
MD5 f7b147cf200217ccc7b6af0419a82fc0
BLAKE2b-256 8177e1475695606a8305c9ad5f5132d911abe8ed1655a6f5c817a69bdd2b5324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 841f93a0e31e4c64d62ea570d81c35de0f6cea224568b2430d832967536308e6
MD5 48b640882162367ff6c3aacc944e3fb3
BLAKE2b-256 d41c13ee6dab51e86de949a85116cc6be6428432e3e298b1cddf4c1e1d7d4324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c4849916f71dc44e19ed370421518c0d86cf73b26e8656192fcfcda08218fbd
MD5 c0dc4a47ad83e716849c86b79e399e6d
BLAKE2b-256 30155ec9c535b48d335e508b0afd6a77045d6db72a8626e76cc0fe81cdcbf8ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9831816a5d34d5170aa9ed32a64982c3d6f4332e7ecfe62dc97767e163cb0b17
MD5 7f0d2c54cbe55ff603adc3c2adc0fa8c
BLAKE2b-256 5f7e216c5c3f518000c1feabc52c31a5746eaf14878bd62daf5a46442df57327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 011b77153906030b795791f2fdfa2d68f1a8d7e40bce78b029782ade3afe4f2f
MD5 a9d652f0d721dc79b62d360dd13c0e01
BLAKE2b-256 e71856af9329f5c7eb29d40fb76101829d6bbd142924b8aee09e4a4cd30f8b0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.4-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/5.0.0 CPython/3.12.3

File hashes

Hashes for shapely-2.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 31c19a668b5a1eadab82ff070b5a260478ac6ddad3a5b62295095174a8d26398
MD5 c537286c417254ac11d76947f1645049
BLAKE2b-256 84e9434a57e07360f73d5b52216dfbfcd828bac6f87cb06cc56daae4e80e0d7a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9dab4c98acfb5fb85f5a20548b5c0abe9b163ad3525ee28822ffecb5c40e724c
MD5 07268d7a00306942032aaa8f9547c6c5
BLAKE2b-256 c7749db2656b0356c3aed4cc1709afd432ee2227a5bf2eecd04e56f07937a066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8de4578e838a9409b5b134a18ee820730e507b2d21700c14b71a2b0757396acc
MD5 520fdb5d0a0bebd2eb55f9d43a892257
BLAKE2b-256 f35d1ff630d519dbb850531034da66d3f31df5df5fa8e126e0c62e23680826c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 485246fcdb93336105c29a5cfbff8a226949db37b7473c89caa26c9bae52a242
MD5 06abe9478d39e7d7941c609205f1aa28
BLAKE2b-256 7d1151ee0fd72718c8c21554d890e88043eedba4a22a6e855236a777818d9080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddf4a9bfaac643e62702ed662afc36f6abed2a88a21270e891038f9a19bc08fc
MD5 6f38d973b4112181fc04ca7df5c19d10
BLAKE2b-256 ed0f0d0063a407a6827f2335c53190535c35fa6744a9da7ce4a77f56b984b109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 263bcf0c24d7a57c80991e64ab57cba7a3906e31d2e21b455f493d4aab534aaa
MD5 29d7c8136263bf7a6a8007c1e28b1bf5
BLAKE2b-256 1fb80ae46102f91eb8753a145ed0f391dacc980351db077f88724ea0dab7b249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3f9103abd1678cb1b5f7e8e1af565a652e036844166c91ec031eeb25c5ca8af0
MD5 de96eb2bee7f1669b3fcaa79c0a19823
BLAKE2b-256 1fa15443ff93e0d4b9535bf1cdabc2d8afcac63be5f921c5f941f251849c77e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.4-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/5.0.0 CPython/3.12.3

File hashes

Hashes for shapely-2.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ec555c9d0db12d7fd777ba3f8b75044c73e576c720a851667432fabb7057da6c
MD5 2856523d581d0e9881529dd5408950df
BLAKE2b-256 1df96ff57fa487e67166b0cf26bd52cbefc70c4ccb33c903a87b4f3dbce0cc64

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 55a38dcd1cee2f298d8c2ebc60fc7d39f3b4535684a1e9e2f39a80ae88b0cea7
MD5 eb383b99c0f1380651d5876a49152f81
BLAKE2b-256 14796e10274c7f9615576e9d6a930f3471dc54849159894575b98dd3d438fb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb5cdcbbe3080181498931b52a91a21a781a35dcb859da741c0345c6402bf00c
MD5 bfd409fff76eb235707eabf14e24637e
BLAKE2b-256 a50d40f176f80ca897950c6599b1250505f5e1c50827ffae6c8c58dbd0feb520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cd4ccecc5ea5abd06deeaab52fcdba372f649728050c6143cc405ee0c166679
MD5 2dbf2af164bee2549bb9254a8a914913
BLAKE2b-256 96ac3b91deb96b022f3833076893ccf11eebb03d6d0bc1199334badc0515ec85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 674d7baf0015a6037d5758496d550fc1946f34bfc89c1bf247cabdc415d7747e
MD5 f6cbd6757558b683fef26b1075dee56f
BLAKE2b-256 9f28a82210943c1bd7968d2277896f57384da03ac4308574ac3de3a8aad784e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b79bbd648664aa6f44ef018474ff958b6b296fed5c2d42db60078de3cffbc8aa
MD5 2d9a0df607d53e722389e3957ce72250
BLAKE2b-256 cc305f6deb8b97dc858aa8589fa780ce8262f8d0d8e131814f8195316c60f699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 489c19152ec1f0e5c5e525356bcbf7e532f311bff630c9b6bc2db6f04da6a8b9
MD5 1d6456cd45f7d61c626c01f216ba8bc7
BLAKE2b-256 18edb54777e8364eab641fac8e5ac7fc6cf68736d9bc0e8b329b778a4e8c6861

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0.4-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/5.0.0 CPython/3.12.3

File hashes

Hashes for shapely-2.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 464157509ce4efa5ff285c646a38b49f8c5ef8d4b340f722685b09bb033c5ccf
MD5 0b9ae44d50773d541553d04bbb6854a9
BLAKE2b-256 26d6ba5ab07d8d5b413774a3d3914b086d2c8136d493a5023fb392aff4d431b3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for shapely-2.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5af4cd0d8cf2912bd95f33586600cac9c4b7c5053a036422b97cfe4728d2eb53
MD5 f7511773931380337f33db95bbb307da
BLAKE2b-256 317fd6ce1ae8c3c6b4986bf712e2431a8e84924667e30d78cac670918131b74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fbdc1140a7d08faa748256438291394967aa54b40009f54e8d9825e75ef6113
MD5 3a6c7635726a5b3e77d5fc9390504e7e
BLAKE2b-256 d7d57baa2741defad363aba6f6537403584f9145e69187e252447d2f743f633b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05ffd6491e9e8958b742b0e2e7c346635033d0a5f1a0ea083547fcc854e5d5cf
MD5 e4ee099cf05082a685e2661bdcae953d
BLAKE2b-256 877929e0fda2b64564d3ebc7e8e124d60afadaa540bf681109c2bc78047ef405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 994c244e004bc3cfbea96257b883c90a86e8cbd76e069718eb4c6b222a56f78b
MD5 c4b16ac5c14c3c3432ea80c04ac02f83
BLAKE2b-256 36312d20ca2c18b3bee4e6984f236b2679693680a853dc453fa80540602f13f6

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