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.0rc3.tar.gz (273.4 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

shapely-2.0rc3-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.0rc3-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.0rc3-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.0rc3-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

shapely-2.0rc3-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.0rc3-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

shapely-2.0rc3-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.0rc3-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.0rc3-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

shapely-2.0rc3-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.0rc3-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

shapely-2.0rc3-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.0rc3-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.0rc3-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.0rc3-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

shapely-2.0rc3-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.0rc3-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

shapely-2.0rc3-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.0rc3-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.0rc3-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.0rc3-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

shapely-2.0rc3-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.0rc3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

shapely-2.0rc3-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.0rc3-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.0rc3.tar.gz.

File metadata

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

File hashes

Hashes for shapely-2.0rc3.tar.gz
Algorithm Hash digest
SHA256 af579ce708dff515dbb213564f9841342a07699307e22e909e3616b71067e891
MD5 96624978afe6cc426e9bc9153eb58bb5
BLAKE2b-256 bdf53170732d23852df2d01c0f0bd394ecb2a7103e3cb95c59f7d1dad52a9ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 305ddb2f736ce3b695b965b7051ada608954a472d1b44dbc6748d3e2cd150e56
MD5 8abf42a6f5e49288096d49316dbcc7e9
BLAKE2b-256 638924abf00635005848f26b39cb705b460dfed8f5fe2a2b3321d563eab2388e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f5894d5c03824f19d4f8a1f3caf42e3a24a45ac1776a3ff3794fff77ee26541d
MD5 42b3656823c1d54ac5ab4bc9b99e3922
BLAKE2b-256 b5ba15e305405d3381c4c4101dd733aa9c731f4a315feb34b617ba4efa65ed30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e442780015792333ced49c4bf334ad2b17d49ccdd52613aa62bb94a9836ed0e
MD5 30ee61a8616de7e7bdb609fc024c52ac
BLAKE2b-256 4f17e6569fb30128788490b04970c9e511536d273dc4893ba21c8c1fe89e3305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e38f71102f21e6ca219c0f9051a8dce4d9e9b3db7e1b3483949067cd7969817a
MD5 bb29d3ceb57fdc4750cc72e52e175c85
BLAKE2b-256 b4200ab5fcbffbe768615d8e2a851ec82778baf5f61ece5efd5053eafecfacf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcef241683ca7c864d122dcfa8ea61a3bfca1507cf2cdc05e7bff40dbf9a0cbd
MD5 9553481e655b448ed31b6755dafb7289
BLAKE2b-256 04bccaa609de790420c323b2ec01258cdee407040709d179dcf43c26e4546e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c4d72367eb9ca2afe42c5b2eeb34a7e7adb32da3f6da3d6d36234622eea4044
MD5 02bb1ef4721aa4d2ab02fb7c8d7d7d77
BLAKE2b-256 d37083cbc597de2c96636dac204ced3a9e5a0337dbbadc596f5647e8104c85a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d88254abd50ffa2e5f47d2bb87443b9b9071284afa05935b7a0ac4b4ef7d3e0
MD5 ceadbb207abc8dad6432b13fa40db40e
BLAKE2b-256 bc1949f8327c62ace74717ee0a7636fa907bc6c369074c92bbc468879f53182e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 728aaa0629217cec2be5b969ec3306bb3882fb55e3515079b472e4c36930623f
MD5 80f30d252d68b9d40199976e016abd25
BLAKE2b-256 e7f32dbda48b580846a1078cc0f4471d7937686e1bc7ed340fa019e5578720d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8de2266ff75246f6829b611ad813672016d879f57c02f20d97c5c512650090f8
MD5 ceec22022e3c0aa7b4601e3b43d5219e
BLAKE2b-256 11579134ea28eb3e4d2f2a2089158c4df0281023b25a75817cef70e9697e25cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e40cca1823d344e3bfc2222a5f69fe0246695ab92501fd2805ab746ace4fd597
MD5 8a5464ae37d08dbd5acf01d348df410e
BLAKE2b-256 de42d43ab1a179056c32218bfd56adf86788a206c7e2e6c1e715481964fe98cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8aeb2a441fc7365bf4ad60d3105916a751fea597ff8606d8516fcc25ab4b840f
MD5 cdbd7ea292f2347b9a1fc22922fd98e9
BLAKE2b-256 1e8f27c8dff25c20affe02bc87a229885a4a4614b8e45951c00b1f13e30ef22a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a209563b9c942be0d3f5677b2741ec31a559f5a065965eca185c2faaaec479f
MD5 e2e45954ea41c173a85497d58a0c6c90
BLAKE2b-256 42777201173099ed0032640dd18e67e29754373356a08c59b43e2c16a2c27fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3c8d8d41b3999453bde84e7236de441d871a8916b94bacfb6c006241f941ba8
MD5 2d1c447695452b78711bfd4071777848
BLAKE2b-256 5237fde9644f36dde79fbe95be45afb88573bdf19588db9e4bef411f5c161dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ad250083f9f2bb609d898493f084c5c0916f218900083c4607e2112e8bc3c5c
MD5 81b5a74939e1402f5be68c53f19a05a6
BLAKE2b-256 7138ae3ddd50eed8da07b9dc06f0a180b7186b521fd1dcdae93131fc38cf6c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 980e1ccdec1125feb5d95a10942b3e2a181e857718c9ba25975fb4522db16851
MD5 bf9daed0cddd00fbf6ce20c89a2f0797
BLAKE2b-256 97b7fe1f7f57aa1de73c19a13d8c9bfe96374f07807405a6bdfc18175fe5ec5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d1b3c3e46bedf89dde3e0047a8da061379e75ae6d7bdceffe4aeb58ee8b346f8
MD5 ac8e90340ddde74d23eb5c4c0fe5bd05
BLAKE2b-256 a45e123e9803f41647cf90933bb05f0b76db3cd19ccff8cb92567ac57463987c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e07e2d3a1896975a98e5b743b9c05a47dc896ae4bad9022d8943a1d71ff44f48
MD5 91f558cb4d485b91be7223bc99ae6dc6
BLAKE2b-256 c935e25604f18e53e9f790b9e2c887a54ff6da0ffde421a711d7dfb7ae7a0228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c08188679aeb3ac3a5b84a660b300df0fcea8142f830e3cb472480abeab531d5
MD5 fa843f265856a0df9c33e85542adff5c
BLAKE2b-256 07620fabf0261a61575f62c64ea5b553a0e290c5aba6074f08eae73b132f7230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 991815f87b3944c465566d883a87cdc80d6ec4cfd9023c0244ed74a68fdbb1db
MD5 082dbdbd6792541fa7a452570d929d31
BLAKE2b-256 73a19f7ddef2f75731a3989731c55f2576c147c65195b93645f99b822fb3fe8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed7de7c3b6e2446c12bd7980d19260324e4b1baba0feff4006b7c46de2749b9a
MD5 b5421e5a41db1fb5f5a32b66be859bcc
BLAKE2b-256 ac0859baf4e9341d2019ec6cbc2c8f7ed6af16b07b10a10fe6506ff249a2d168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 677ca8f4e23dfe08d502c30d27ffbcb50abc787e50c5f9f5be81d2e5c1b25d07
MD5 c74a2b72c294cc2a78e46b117b695028
BLAKE2b-256 2824748349280dc2ace3b4c490026d01e5706e618351cac49406ad4148881439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea1305ab48b8f2379d4fc83552d3e55df55923a6c4e6877c273f8100bad09d09
MD5 b482b582d33a2a45beea656429b44346
BLAKE2b-256 c2857fb14539aa96b630db6ab1ed979045c6d1095a31fa9b7717068594b5ede2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38a823682e2181c061a6721d18f01ed926ca042ce749e7e48e1b1262f8a56a45
MD5 0b99d486bc9a4f523ce638b58b4a65ba
BLAKE2b-256 d580b9be6d900a31d5c3cda93720343e2598d55ae14a35a0996b848af2fece9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9070b934063e26a802dbde90545d8a61f0aa347ff0a2100a8d6a5de6ea5389a9
MD5 dc091f9ed97f2cd9c5b7141ce835fcd8
BLAKE2b-256 769c6842a91668c4594338f104ac8383e22b221fb628f454b518d836e6635a94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2aac52a07e1b71255a7810d4152fe30b826ee9184f8ac6aae19cf3b498016645
MD5 d8f4a8531d55334c85fe2658154e7787
BLAKE2b-256 92c59529e30791a6606bca2d6e23c7f1eccafe58006b79c5432bf8dd332a16ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69cd2834c54d871454be42f5e69803ce10062b9571c2b120a2ad459e6bf8d78a
MD5 8b10dcd0c820d53a7ffd7e06d1386b71
BLAKE2b-256 9d6890d8a5a6f823955f9211316e65935766a076ef559e8507c6a95817e664a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ac091f1a65a5dca9ffcf115de99e213f719b021cc71882326da9d8bd4d5ad60
MD5 7a12c1edb0fd801f24b1bf7c1e17317d
BLAKE2b-256 95a1550c30873add92a33b5b755df7223b20c549807f40c1f1c6e1caa82c2dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2e5edc65361da5269c5b4582474f3abdb6f34df3d39d1c14801c8da4a49852c
MD5 269e79ba0181ac707e4251c62b48c233
BLAKE2b-256 51ad36e3587081711f17d05767ee57020de120c5d2b47ad10753b6884eaff16a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6921d9199f78215720b6b74d247842b70711e4b42cbcce3fd2ab2b943e54c9f0
MD5 2fe22f7f9d13978d52847b056bf6a4cc
BLAKE2b-256 850e3637c010e5c59dd3c1e2961e5bca3c283c1dbf1b503383184386e58a1070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 187adf21889afcf9f40b52998d11ec1cbe9e1519d14565b106a4e68d550d5ad8
MD5 b297a74f153ff6e87467f9652d382ad9
BLAKE2b-256 b4c74a72f9f0337f4ad0d99ae0b448c5545f83fc5a2b8b12d4ca688c7e2d034d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b3daa911e1643d77e1c553f50cde19d49b63a7a173c7fc17cbe38cb26520c532
MD5 f59587c9a6b665e80c749836e61a23b2
BLAKE2b-256 8d083d0d05bf5b5580eff7b119908122016251ead89abe0b09a7dd2d015def53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 27972ad1dd94da9f4f494c30afbd80eb55c566766fa4d85d1619452be6e80b01
MD5 3201310e3b8c6b17762dc5867fa0d778
BLAKE2b-256 1b2ef299465d36827ef4b2acfeedfba188e8cc5e485764397997d3a8c5c1d08d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shapely-2.0rc3-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.0

File hashes

Hashes for shapely-2.0rc3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 59d770258808307d698e541acad42ba3c3bff5457abfe351b44ef78136ee26ea
MD5 18dea9ae38a39be2df7de81db7568741
BLAKE2b-256 62ea572599c2ed47f3bdac02a3020090fd2485f4857570ff026aabd60bf501bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee3c02219104a65cae197acd495b87a126df8762c769312720bc0f9dd4c52bdb
MD5 098d1650dc34eacad51ef368e0e25048
BLAKE2b-256 1519f00d46338e1d47dfd1c2c6f8b36f1eed0ea7374ef5f068e0185789c9061d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf926319dbb65c89a879d8eaae1ec0d3599b61d84879cfe335cd3a2bc02c66c0
MD5 62af399cfa078d5b8126c629acd2e2a6
BLAKE2b-256 0ffcb8948eb264bb2fd85aafcf6d211e221208dcb059262a23b5d77bbb8e087f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f326cf77a0022dcd44129fa04da12e2a84988934e9869d0f348e7f4f0fd33170
MD5 7a02e819ad7883ebc20983bfc679fb63
BLAKE2b-256 59b58cedd3cf220bb5e64745f304c92de3a2ec5f0d12039a6c68205b7915aa69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shapely-2.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cce2febf234b2e18141cc22c3f69606a8908ebd194e02e5c3c361b8415e4e2e
MD5 83bbb94fb5f7717851a667e5a28899de
BLAKE2b-256 7864602cd4302ba756fc5c0d28b8c4fdcc8c9cc14e93b079c24da9ab9f77063d

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