======
PyGEOS
======
.. Documentation at RTD — https://readthedocs.org
.. image:: https://readthedocs.org/projects/pygeos/badge/?version=latest
:alt: Documentation Status
:target: https://pygeos.readthedocs.io/en/latest/?badge=latest
.. Github Actions status — https://github.com/pygeos/pygeos/actions
.. image:: https://github.com/pygeos/pygeos/workflows/Test/badge.svg
:alt: Github Actions status
:target: https://github.com/pygeos/pygeos/actions/workflows/test-pip.yml?query=branch%3Amaster
.. Travis CI status -- https://travis-ci.com
.. image:: https://travis-ci.com/pygeos/pygeos.svg?branch=master
:alt: Travis CI status
:target: https://travis-ci.com/github/pygeos/pygeos
.. PyPI
.. image:: https://img.shields.io/pypi/v/pygeos.svg
:alt: PyPI
:target: https://pypi.org/project/pygeos/
.. Anaconda
.. image:: https://img.shields.io/conda/vn/conda-forge/pygeos
:alt: Anaconda
:target: https://anaconda.org/conda-forge/pygeos
.. Zenodo
.. image:: https://zenodo.org/badge/191151963.svg
:alt: Zenodo
:target: https://zenodo.org/badge/latestdoi/191151963
PyGEOS is a C/Python library with vectorized geometry functions. The geometry
operations are done in the open-source geometry library GEOS. PyGEOS wraps
these operations in NumPy ufuncs providing a performance improvement when
operating on arrays of geometries.
**Important note**: PyGEOS was merged with Shapely (https://shapely.readthedocs.io)
in December 2021 and will be released as part of Shapely 2.0. The development will take place
at the Shapely repository. Please raise issues or create pull request over there.
PyGEOS itself will receive updates (by backporting from the Shapely repository) until
Shapely 2.0 is actually released.
What is a ufunc?
----------------
A universal function (or ufunc for short) is a function that operates on
n-dimensional arrays in an element-by-element fashion, supporting array
broadcasting. The for-loops that are involved are fully implemented in C
diminishing the overhead of the Python interpreter.
Multithreading
--------------
PyGEOS functions support multithreading. More specifically, the Global
Interpreter Lock (GIL) is released during function execution. Normally in Python, the
GIL prevents multiple threads from computing at the same time. PyGEOS functions
internally releases this constraint so that the heavy lifting done by GEOS can be
done in parallel, from a single Python process.
Examples
--------
Compare an grid of points with a polygon:
.. code:: python
>>> geoms = points(*np.indices((4, 4)))
>>> polygon = box(0, 0, 2, 2)
>>> contains(polygon, geoms)
array([[False, False, False, False],
[False, True, False, False],
[False, False, False, False],
[False, False, False, False]])
Compute the area of all possible intersections of two lists of polygons:
.. code:: python
>>> from pygeos import box, area, intersection
>>> polygons_x = box(range(5), 0, range(10, 15), 10)
>>> polygons_y = box(0, range(5), 10, range(10, 15))
>>> area(intersection(polygons_x[:, np.newaxis], polygons_y[np.newaxis, :]))
array([[100., 90., 80., 70., 60.],
[ 90., 81., 72., 63., 54.],
[ 80., 72., 64., 56., 48.],
[ 70., 63., 56., 49., 42.],
[ 60., 54., 48., 42., 36.]])
See the documentation for more: https://pygeos.readthedocs.io
References
----------
- GEOS: https://libgeos.org
- Shapely: https://shapely.readthedocs.io/en/latest/
- Numpy ufuncs: https://docs.scipy.org/doc/numpy/reference/ufuncs.html
- Joris van den Bossche's blogpost: https://jorisvandenbossche.github.io/blog/2017/09/19/geopandas-cython/
- Matthew Rocklin's blogpost: http://matthewrocklin.com/blog/work/2017/09/21/accelerating-geopandas-1
Copyright & License
-------------------
PyGEOS is licensed under BSD 3-Clause license. Copyright (c) 2019, Casper van der Wel.
GEOS is available under the terms of GNU Lesser General Public License (LGPL) 2.1 at https://libgeos.org.
Raw data
{
"_id": null,
"home_page": "https://github.com/pygeos/pygeos",
"name": "pygeos",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "",
"author": "Casper van der Wel",
"author_email": "caspervdw@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/ca/1f/07cda42b8a478ddfeb8b0bb328a10b2759ae75f8a60026238c0e33c9ef80/pygeos-0.14.tar.gz",
"platform": null,
"description": "======\nPyGEOS\n======\n\n.. Documentation at RTD \u2014 https://readthedocs.org\n\n.. image:: https://readthedocs.org/projects/pygeos/badge/?version=latest\n\t:alt: Documentation Status\n\t:target: https://pygeos.readthedocs.io/en/latest/?badge=latest\n\n.. Github Actions status \u2014 https://github.com/pygeos/pygeos/actions\n\n.. image:: https://github.com/pygeos/pygeos/workflows/Test/badge.svg\n\t:alt: Github Actions status\n\t:target: https://github.com/pygeos/pygeos/actions/workflows/test-pip.yml?query=branch%3Amaster\n\n.. Travis CI status -- https://travis-ci.com\n\n.. image:: https://travis-ci.com/pygeos/pygeos.svg?branch=master\n :alt: Travis CI status\n :target: https://travis-ci.com/github/pygeos/pygeos\n\n.. PyPI\n\n.. image:: https://img.shields.io/pypi/v/pygeos.svg\n\t:alt: PyPI\n\t:target: https://pypi.org/project/pygeos/\n\n.. Anaconda\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/pygeos\n :alt: Anaconda\n :target: https://anaconda.org/conda-forge/pygeos\n\n.. Zenodo\n\n.. image:: https://zenodo.org/badge/191151963.svg\n :alt: Zenodo \n :target: https://zenodo.org/badge/latestdoi/191151963\n\n\nPyGEOS is a C/Python library with vectorized geometry functions. The geometry\noperations are done in the open-source geometry library GEOS. PyGEOS wraps\nthese operations in NumPy ufuncs providing a performance improvement when\noperating on arrays of geometries.\n\n**Important note**: PyGEOS was merged with Shapely (https://shapely.readthedocs.io)\nin December 2021 and will be released as part of Shapely 2.0. The development will take place\nat the Shapely repository. Please raise issues or create pull request over there.\nPyGEOS itself will receive updates (by backporting from the Shapely repository) until\nShapely 2.0 is actually released.\n\nWhat is a ufunc?\n----------------\n\nA universal function (or ufunc for short) is a function that operates on\nn-dimensional arrays in an element-by-element fashion, supporting array\nbroadcasting. The for-loops that are involved are fully implemented in C\ndiminishing the overhead of the Python interpreter.\n\nMultithreading\n--------------\n\nPyGEOS functions support multithreading. More specifically, the Global\nInterpreter Lock (GIL) is released during function execution. Normally in Python, the\nGIL prevents multiple threads from computing at the same time. PyGEOS functions\ninternally releases this constraint so that the heavy lifting done by GEOS can be\ndone in parallel, from a single Python process.\n\nExamples\n--------\n\nCompare an grid of points with a polygon:\n\n.. code:: python\n\n >>> geoms = points(*np.indices((4, 4)))\n >>> polygon = box(0, 0, 2, 2)\n\n >>> contains(polygon, geoms)\n\n array([[False, False, False, False],\n [False, True, False, False],\n [False, False, False, False],\n [False, False, False, False]])\n\n\nCompute the area of all possible intersections of two lists of polygons:\n\n.. code:: python\n\n >>> from pygeos import box, area, intersection\n\n >>> polygons_x = box(range(5), 0, range(10, 15), 10)\n >>> polygons_y = box(0, range(5), 10, range(10, 15))\n\n >>> area(intersection(polygons_x[:, np.newaxis], polygons_y[np.newaxis, :]))\n\n array([[100., 90., 80., 70., 60.],\n [ 90., 81., 72., 63., 54.],\n [ 80., 72., 64., 56., 48.],\n [ 70., 63., 56., 49., 42.],\n [ 60., 54., 48., 42., 36.]])\n\nSee the documentation for more: https://pygeos.readthedocs.io\n\n\nReferences\n----------\n\n- GEOS: https://libgeos.org\n- Shapely: https://shapely.readthedocs.io/en/latest/\n- Numpy ufuncs: https://docs.scipy.org/doc/numpy/reference/ufuncs.html\n- Joris van den Bossche's blogpost: https://jorisvandenbossche.github.io/blog/2017/09/19/geopandas-cython/\n- Matthew Rocklin's blogpost: http://matthewrocklin.com/blog/work/2017/09/21/accelerating-geopandas-1\n\n\nCopyright & License\n-------------------\n\nPyGEOS is licensed under BSD 3-Clause license. Copyright (c) 2019, Casper van der Wel.\nGEOS is available under the terms of \u200bGNU Lesser General Public License (LGPL) 2.1 at https://libgeos.org.\n",
"bugtrack_url": null,
"license": "BSD 3-Clause",
"summary": "GEOS wrapped in numpy ufuncs",
"version": "0.14",
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"md5": "bbd166d888783c98ffe26d2f9188a294",
"sha256": "cfad06eae27e7236a9dc1a6d1c278525d4cf79422cd05ac6513d55032ff0b6b6"
},
"downloads": -1,
"filename": "pygeos-0.14-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "bbd166d888783c98ffe26d2f9188a294",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 2239159,
"upload_time": "2022-12-12T08:49:16",
"upload_time_iso_8601": "2022-12-12T08:49:16.986389Z",
"url": "https://files.pythonhosted.org/packages/26/3a/b1b1348ed4954946efa6d300a68776d1617454fcc240cacbb8cbf369d281/pygeos-0.14-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e05a1210f5b4f23bb7d7451f52010af3",
"sha256": "bf00c2be6ea9816875636cfe139ff5ac53e9b99e0e7ce38c92cf67b69cf2d6be"
},
"downloads": -1,
"filename": "pygeos-0.14-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e05a1210f5b4f23bb7d7451f52010af3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1247689,
"upload_time": "2022-12-12T08:49:19",
"upload_time_iso_8601": "2022-12-12T08:49:19.110490Z",
"url": "https://files.pythonhosted.org/packages/b9/9e/022933e46efc78ba2dbfad6e74e187c61ac9dc77b377999f41ba6e360abe/pygeos-0.14-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ab93a9278a849c9f6c914da06ff0899f",
"sha256": "785bb70f2d3bcf331e1fa14f17d95e7aa045e0a56114e25cf1976cae29f0419a"
},
"downloads": -1,
"filename": "pygeos-0.14-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ab93a9278a849c9f6c914da06ff0899f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1077924,
"upload_time": "2022-12-12T08:49:20",
"upload_time_iso_8601": "2022-12-12T08:49:20.703938Z",
"url": "https://files.pythonhosted.org/packages/e0/10/15a1d48100b726c403c38df3c9991c1d4fad727bda06026dd817fc4ad50a/pygeos-0.14-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3c3b53f4a4bfd01c66328124287a78db",
"sha256": "169a9fafa047dee10ef98479eb0f60bfbf5c688d8228a1c785c1c8ca154345b1"
},
"downloads": -1,
"filename": "pygeos-0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3c3b53f4a4bfd01c66328124287a78db",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 2163576,
"upload_time": "2022-12-12T08:49:22",
"upload_time_iso_8601": "2022-12-12T08:49:22.141634Z",
"url": "https://files.pythonhosted.org/packages/4b/8c/0ac92b1fa6a5f7d77861e6974c85335b703cfe2f4197610d52035b052d99/pygeos-0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1d428d69f29d340d6d87f8ba9e3506ee",
"sha256": "7cae0518ee249984a5b57ec3501e135b3f455a3c173846cc3d314b4f63f7ead9"
},
"downloads": -1,
"filename": "pygeos-0.14-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "1d428d69f29d340d6d87f8ba9e3506ee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1294080,
"upload_time": "2022-12-12T08:49:23",
"upload_time_iso_8601": "2022-12-12T08:49:23.595815Z",
"url": "https://files.pythonhosted.org/packages/15/00/bd5f59c8488740c807f00bc6011e3f7e2185f86339a7fe5097c46aab4a5b/pygeos-0.14-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "669480895f69844a1b42c034dd2e1cd5",
"sha256": "138f4da97f91f475ba41ee3a2249f59ec39ce2058144a4f97bb19e57d7a6bc1b"
},
"downloads": -1,
"filename": "pygeos-0.14-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "669480895f69844a1b42c034dd2e1cd5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1432745,
"upload_time": "2022-12-12T08:49:25",
"upload_time_iso_8601": "2022-12-12T08:49:25.368722Z",
"url": "https://files.pythonhosted.org/packages/b9/dd/676f492f150f7444349f67a4b99be2cdeac82097a8cf6765cf326cb8abcf/pygeos-0.14-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b0c06a3e0f892de08e67d760652830fe",
"sha256": "de8261998e7a767cfa4ecf4eea3cc5648cc8afcf57d0286ceaf2e63db3c85adf"
},
"downloads": -1,
"filename": "pygeos-0.14-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "b0c06a3e0f892de08e67d760652830fe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 2230633,
"upload_time": "2022-12-12T08:49:27",
"upload_time_iso_8601": "2022-12-12T08:49:27.503540Z",
"url": "https://files.pythonhosted.org/packages/0b/b6/2a5d66f1742b5ae7ab29c442cd629ce75d5e66310ad3641a8f11076f9dcc/pygeos-0.14-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6f8e659ed8f7a56a0fc3615a5cbb237c",
"sha256": "251a663ac32312641111d00976878758637ebab40354f97f544abbd4cea3e677"
},
"downloads": -1,
"filename": "pygeos-0.14-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6f8e659ed8f7a56a0fc3615a5cbb237c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1243225,
"upload_time": "2022-12-12T08:49:29",
"upload_time_iso_8601": "2022-12-12T08:49:29.643857Z",
"url": "https://files.pythonhosted.org/packages/c7/1d/dff60d4a7b427b27d7e77ff974b7456e996a9ed3cbda5f8b10d9e7f4f2b6/pygeos-0.14-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "0cd6f742603a663db410b2235ed4a789",
"sha256": "f6dc30f459f9474fb1eb161291ff7b6258d73c27f8020a0d5683d9d98ffec3d0"
},
"downloads": -1,
"filename": "pygeos-0.14-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0cd6f742603a663db410b2235ed4a789",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1074012,
"upload_time": "2022-12-12T08:49:31",
"upload_time_iso_8601": "2022-12-12T08:49:31.952592Z",
"url": "https://files.pythonhosted.org/packages/74/eb/fc13b19ca115428e7eabf27b8d925931d3a9984d231405b76f31c8adaf5e/pygeos-0.14-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "73aa7ebc1677a1a7e83d262ef3d75c83",
"sha256": "67fb8f47978fff46f6f209d3aae094c3530ad70cce6b7baafc01f077549770c2"
},
"downloads": -1,
"filename": "pygeos-0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "73aa7ebc1677a1a7e83d262ef3d75c83",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 2367853,
"upload_time": "2022-12-12T08:49:33",
"upload_time_iso_8601": "2022-12-12T08:49:33.766814Z",
"url": "https://files.pythonhosted.org/packages/e7/c8/d094bb33177d9ade063dc20720fc747c08c978ebd5e497520fcfed3e656b/pygeos-0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5ff8c30312596d1c8af2f7c213af635b",
"sha256": "987facbd0283ab1990ff490681898a93690e8181f8c92e37c5e23d630750ef4c"
},
"downloads": -1,
"filename": "pygeos-0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5ff8c30312596d1c8af2f7c213af635b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 2195934,
"upload_time": "2022-12-12T08:49:35",
"upload_time_iso_8601": "2022-12-12T08:49:35.936197Z",
"url": "https://files.pythonhosted.org/packages/4a/e5/8fc6f9586674c06080327a4fe0774d871416b6bd60974c468559ec650570/pygeos-0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b9abc4d5ba407a005680d355ca9bf20c",
"sha256": "a5bae1772f0d333e38689bf691c23e3416d797711bfed8086d78c91d63cd373a"
},
"downloads": -1,
"filename": "pygeos-0.14-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "b9abc4d5ba407a005680d355ca9bf20c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1292483,
"upload_time": "2022-12-12T08:49:37",
"upload_time_iso_8601": "2022-12-12T08:49:37.485381Z",
"url": "https://files.pythonhosted.org/packages/05/5c/d72d59163655d29e6fd4c6ebf7f9b1e286b47c6adfb20ecfce7c6836e83c/pygeos-0.14-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "63dd140664f39472edd9d5d2dcb9ec9a",
"sha256": "6d41973d0361712e53d54489d0c1cc6d37b941e5c808bfd51c461e36c0b4758b"
},
"downloads": -1,
"filename": "pygeos-0.14-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "63dd140664f39472edd9d5d2dcb9ec9a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1430737,
"upload_time": "2022-12-12T08:49:38",
"upload_time_iso_8601": "2022-12-12T08:49:38.765559Z",
"url": "https://files.pythonhosted.org/packages/00/db/130fdda366f3e3f08984a3638d624ce10565fe306ac93429d04537a22f5b/pygeos-0.14-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "87f080a82ecb45179ede12f211dcec25",
"sha256": "e415467b6f73bcd0762dbb49d7d27188ccf1883dd94620d081a46b177b1d8696"
},
"downloads": -1,
"filename": "pygeos-0.14-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "87f080a82ecb45179ede12f211dcec25",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1243118,
"upload_time": "2022-12-12T08:49:40",
"upload_time_iso_8601": "2022-12-12T08:49:40.481710Z",
"url": "https://files.pythonhosted.org/packages/31/ec/009216b50fd1b481a3b23ba2cb9b3b4d9bcb0a4152a6c5a8f7ee26589766/pygeos-0.14-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2c43e3bf3a46913bdf31954650e2266f",
"sha256": "61f9151ace84c69b9f51fce07d1ec784335a06eb8f83efbf36d9812e15ee1501"
},
"downloads": -1,
"filename": "pygeos-0.14-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2c43e3bf3a46913bdf31954650e2266f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 2302417,
"upload_time": "2022-12-12T08:49:42",
"upload_time_iso_8601": "2022-12-12T08:49:42.337605Z",
"url": "https://files.pythonhosted.org/packages/59/d9/57a66b7ed7ac4b9f3b20217c7c7d49f3cb156ab6a76319b1d42cb84f73b5/pygeos-0.14-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1c18c04658a74fbe5fa9dc4db08cf074",
"sha256": "fc8939d6f4478918e65149f7eaea44b4a8a42d5ac210ab98a03fd49413f17375"
},
"downloads": -1,
"filename": "pygeos-0.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1c18c04658a74fbe5fa9dc4db08cf074",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 2122514,
"upload_time": "2022-12-12T08:49:43",
"upload_time_iso_8601": "2022-12-12T08:49:43.833693Z",
"url": "https://files.pythonhosted.org/packages/86/69/1b53d2963b94182907985688a6b35838b63f5d74a996b55f93982a1f4c47/pygeos-0.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c6243d35902954c57dc4639815d9590a",
"sha256": "b99dda430d097de75b0ae2a3015ab2f744168b867d404c2271369b5ca39778bc"
},
"downloads": -1,
"filename": "pygeos-0.14-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "c6243d35902954c57dc4639815d9590a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1301965,
"upload_time": "2022-12-12T08:49:45",
"upload_time_iso_8601": "2022-12-12T08:49:45.790405Z",
"url": "https://files.pythonhosted.org/packages/f0/f3/a6ead54453537541b5e41acfa5064c36c8154860e675a20242d94bb2d6dd/pygeos-0.14-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "377d90bea7327daab76bc1694b70d592",
"sha256": "9a45f20437ee4bcae3b73983fdb141f1d2fddb1ea9019018c175ea9b520c44cb"
},
"downloads": -1,
"filename": "pygeos-0.14-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "377d90bea7327daab76bc1694b70d592",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1463369,
"upload_time": "2022-12-12T08:49:47",
"upload_time_iso_8601": "2022-12-12T08:49:47.968563Z",
"url": "https://files.pythonhosted.org/packages/7c/33/2ebba0702728e46492d4ad8332985500d17ec2b9fccac095354203c79fcf/pygeos-0.14-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "65cd5eea247efdd47905c9b5ba7f8b39",
"sha256": "b951deb677c9209bbedbeac59be0e19681ba26385232bd657329560db7ca8b42"
},
"downloads": -1,
"filename": "pygeos-0.14-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "65cd5eea247efdd47905c9b5ba7f8b39",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 2229723,
"upload_time": "2022-12-12T08:49:49",
"upload_time_iso_8601": "2022-12-12T08:49:49.537396Z",
"url": "https://files.pythonhosted.org/packages/5c/64/4149637a46740f6f5ed977c8fe1f1acfcea8c8e125919e1bd3eda7732567/pygeos-0.14-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a7d405b0a3837f59605fcf6de636a24e",
"sha256": "357188219364398dcadd2e03b3524411d578b1be98a9e0f0fa1fc877bf5f881c"
},
"downloads": -1,
"filename": "pygeos-0.14-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a7d405b0a3837f59605fcf6de636a24e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1242443,
"upload_time": "2022-12-12T08:49:51",
"upload_time_iso_8601": "2022-12-12T08:49:51.570102Z",
"url": "https://files.pythonhosted.org/packages/e3/95/71548a22b33fe8a005659ec3bc6aee44ec78b786f73d960ebf0ebfd09b64/pygeos-0.14-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a900eed1ae0d417485ee365bc28166ad",
"sha256": "f27079a4211ad7c6b05b85915c74e6a549030a3281a2bc992218a46b1d34d82b"
},
"downloads": -1,
"filename": "pygeos-0.14-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a900eed1ae0d417485ee365bc28166ad",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1073896,
"upload_time": "2022-12-12T08:49:53",
"upload_time_iso_8601": "2022-12-12T08:49:53.621489Z",
"url": "https://files.pythonhosted.org/packages/50/4d/7ddf8f3167494246297dc117b44e4698854f04f276b7bc2f89c10d00b4e1/pygeos-0.14-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2399b6ebc32b3c1e95bc7a6658eaa454",
"sha256": "3e90515f20025fbbf5d4080e6a0192c93957f7b7d60279834e2afab5129b6163"
},
"downloads": -1,
"filename": "pygeos-0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2399b6ebc32b3c1e95bc7a6658eaa454",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 2355074,
"upload_time": "2022-12-12T08:49:55",
"upload_time_iso_8601": "2022-12-12T08:49:55.440177Z",
"url": "https://files.pythonhosted.org/packages/08/b8/05dbe6d1383fc68ac41a297dc844a511d1322b85b23084983bc4280665e4/pygeos-0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b094ebddefc7b993be7432997249711f",
"sha256": "726893ddf186fe396dea22b4ef76b71db73132d034efc4d22bd8bb3d5a6ab649"
},
"downloads": -1,
"filename": "pygeos-0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b094ebddefc7b993be7432997249711f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 2176532,
"upload_time": "2022-12-12T08:49:57",
"upload_time_iso_8601": "2022-12-12T08:49:57.341830Z",
"url": "https://files.pythonhosted.org/packages/3b/2e/f281acdae482ea43bb7b446f1098fe11bf9e0393f47bcfa153be181a2b5b/pygeos-0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "74fdfb2a0846c86cdc117009010431bd",
"sha256": "d371cf676adece6ff956230226867afcd0fd468de2b6ead39b445f2f25f59e6f"
},
"downloads": -1,
"filename": "pygeos-0.14-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "74fdfb2a0846c86cdc117009010431bd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1305153,
"upload_time": "2022-12-12T08:49:58",
"upload_time_iso_8601": "2022-12-12T08:49:58.752568Z",
"url": "https://files.pythonhosted.org/packages/80/9d/26ea498855ad49d0b4b07bd7bba72df3e6bfd8ee098db7f5e69cb71a08fd/pygeos-0.14-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c0153fab5c474f63a21f084c80ed8bff",
"sha256": "7de3388b97880f16b98a4ad67bd81e1fb7e34b856cecef050db095e26d3fd1f0"
},
"downloads": -1,
"filename": "pygeos-0.14-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "c0153fab5c474f63a21f084c80ed8bff",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1465365,
"upload_time": "2022-12-12T08:50:00",
"upload_time_iso_8601": "2022-12-12T08:50:00.035596Z",
"url": "https://files.pythonhosted.org/packages/32/42/fd5de1266b7c5e356fedb637676a075e9ff5de63b9a9511c3c9be1750b72/pygeos-0.14-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "67ee59c6ea01a9303e51d59df9f0d4f1",
"sha256": "f51a46e0c3f305c6d08296bb70cf0e94e8fe4ce827acf32499e4d11164d005aa"
},
"downloads": -1,
"filename": "pygeos-0.14-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "67ee59c6ea01a9303e51d59df9f0d4f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 2238506,
"upload_time": "2022-12-12T08:50:01",
"upload_time_iso_8601": "2022-12-12T08:50:01.530758Z",
"url": "https://files.pythonhosted.org/packages/f2/3b/5acfe74655fe578171e339d4bdfcacb81db2121291fa585988c435f7561c/pygeos-0.14-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b3308c32bfef77bbed3f4c5d59d42c36",
"sha256": "aa0d90565d64c4e359219dd88b55c9fede39c0c80c12537b84228a28e8a0a723"
},
"downloads": -1,
"filename": "pygeos-0.14-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b3308c32bfef77bbed3f4c5d59d42c36",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1247126,
"upload_time": "2022-12-12T08:50:03",
"upload_time_iso_8601": "2022-12-12T08:50:03.162308Z",
"url": "https://files.pythonhosted.org/packages/64/11/a19b3277b3008362da2ed4c579de2fcdde73939732000d370a2ea97552dc/pygeos-0.14-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e34b8440bea660e3689e409962264317",
"sha256": "4194c8068dc856a6fbd8cb3e26bc450fc6f7058315780df082cd389f7f5064ec"
},
"downloads": -1,
"filename": "pygeos-0.14-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e34b8440bea660e3689e409962264317",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1077761,
"upload_time": "2022-12-12T08:50:04",
"upload_time_iso_8601": "2022-12-12T08:50:04.439278Z",
"url": "https://files.pythonhosted.org/packages/47/78/e2c196200c7b6c702b9372064b43a5d0fca3e29a4e248382e5602b32daa1/pygeos-0.14-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "bb06a7fbcebe0181d2076c8a15467086",
"sha256": "85935aaf69c5fa6a7e3e4363e8fa429ecacad23535999233923ed3ad33d203eb"
},
"downloads": -1,
"filename": "pygeos-0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "bb06a7fbcebe0181d2076c8a15467086",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 2347784,
"upload_time": "2022-12-12T08:50:06",
"upload_time_iso_8601": "2022-12-12T08:50:06.391921Z",
"url": "https://files.pythonhosted.org/packages/80/55/6c857205f7884b58d5669290e480957faf07ea414a4c0d87658caf780582/pygeos-0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f797174532b1dfb5e6e5a8c7f99c20ed",
"sha256": "9ad6c749665badc4c66fcfea5a18b440f24b4c6e1df755391663598a709fa8f8"
},
"downloads": -1,
"filename": "pygeos-0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f797174532b1dfb5e6e5a8c7f99c20ed",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 2167744,
"upload_time": "2022-12-12T08:50:08",
"upload_time_iso_8601": "2022-12-12T08:50:08.214109Z",
"url": "https://files.pythonhosted.org/packages/8a/0f/25cd3e9ab75b498a3316af0f047a181a60466bc5f44d7423c2bb2d2a899f/pygeos-0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ab8675824288d24f0efc33eea8f280d2",
"sha256": "a545ba2fd37a350a3373f274bc6d5ff61a94249f154ded9c5a1b7badb89c9bf4"
},
"downloads": -1,
"filename": "pygeos-0.14-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ab8675824288d24f0efc33eea8f280d2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1295246,
"upload_time": "2022-12-12T08:50:09",
"upload_time_iso_8601": "2022-12-12T08:50:09.729887Z",
"url": "https://files.pythonhosted.org/packages/bb/22/ca1ac7880d52a1e8d0aa6a83e3689e8f7ac1ad53ca425d72ceca9f4b753d/pygeos-0.14-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "66bf1d918365e0264b9b5b3043624db5",
"sha256": "c7b3eee65b07c0adb0ca5668ac55b3c51699bbae67e541fc00c6a9b53bb6ddfb"
},
"downloads": -1,
"filename": "pygeos-0.14-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "66bf1d918365e0264b9b5b3043624db5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1434438,
"upload_time": "2022-12-12T08:50:11",
"upload_time_iso_8601": "2022-12-12T08:50:11.466927Z",
"url": "https://files.pythonhosted.org/packages/1a/ab/8d133be2f10e9c56c45669d190cbd1275a5b1a3f9be4f612d782702d6b59/pygeos-0.14-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "85450969759e2a9601fe18bf82fddcee",
"sha256": "30fbc17f64844200b85133b885fcfb65541b8779531f6ef4f8fe467d3fba7623"
},
"downloads": -1,
"filename": "pygeos-0.14.tar.gz",
"has_sig": false,
"md5_digest": "85450969759e2a9601fe18bf82fddcee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 141330,
"upload_time": "2022-12-12T08:50:13",
"upload_time_iso_8601": "2022-12-12T08:50:13.497756Z",
"url": "https://files.pythonhosted.org/packages/ca/1f/07cda42b8a478ddfeb8b0bb328a10b2759ae75f8a60026238c0e33c9ef80/pygeos-0.14.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2022-12-12 08:50:13",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "pygeos",
"github_project": "pygeos",
"travis_ci": true,
"coveralls": false,
"github_actions": true,
"lcname": "pygeos"
}