| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python311-Shapely | Distribution: openSUSE Tumbleweed |
| Version: 2.1.2 | Vendor: openSUSE |
| Release: 1.1 | Build date: Wed Mar 25 10:20:28 2026 |
| Group: Unspecified | Build host: reproducible |
| Size: 3935481 | Source RPM: python-Shapely-2.1.2-1.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: https://github.com/shapely/shapely | |
| Summary: Geospatial geometries, predicates, and operations | |
Shapely is a Python package for manipulation and analysis of planar geometric objects. It is based on the GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries. Shapely is not concerned with data formats or coordinate systems, but can be readily integrated with packages that are like WorldMill and pyproj.
BSD-3-Clause
* Wed Mar 25 2026 Dirk Stoecker <opensuse@dstoecker.de>
- update to 2.1.2
2.1.2 (2025-09-24)
Wheels are available for Python 3.14 (and still include GEOS 3.13.1).
2.1.1 (2025-05-19)
- Fix performance degradation calling shapely functions (caused by deprecation
of certain positional arguments) (#2283).
- Fix crash caused by `from_ragged_array()` (#2291).
- Fix compilation error building with recent LLVM toolchain (#2293).
2.1.0 (2025-04-03)
Shapely 2.1.0 is a feature release with various new functions,
improvements and bug fixes. Highlights include initial support for geometries
with M or ZM values, functionality for coverage validation and
simplification, and a set of new top-level functions.
Shapely supports Python >= 3.10, and binary wheels on PyPI include GEOS 3.13.1
and are now also provided for musllinux (Alpine) x86_64 platforms.
For a full changelog, see
https://shapely.readthedocs.io/en/latest/release/2.x.html#version-2-1-0
2.0.7 (2025-01-30)
- Fix compilation error on certain Linux platforms, such as Alpine (#1945).
- Fixes crash when reading nonlinear geometry types (CircularString,
CompoundCurve, MultiCurve, CurvePolygon, MultiSurface) from WKB/WKT with
GEOS >= 3.13; these types are not yet supported in Shapely and now raise a
`NotImplementedError` (#2160)
- Fix the `project` method to return a Python float (#2093).
- Drop 1945.patch (included upstream)
* Thu Nov 21 2024 Dirk Müller <dmueller@suse.com>
- avoid stale "requires:" requirement on shapely packages
* Sat Aug 31 2024 Ben Greiner <code@bnavigator.de>
- Update to 2.0.6
* Fix compatibility with NumPy 2.1.0 (#2099).
- Release 2.0.5
* Fix Point x/y/z attributes to return Python floats (#2074).
* Tue Jul 09 2024 Steve Kowalik <steven.kowalik@suse.com>
- Remove upper bound on Cython, Cython 3 is supported.
* Wed May 29 2024 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Cherry-pick upstream patch to fix build with GCC 14
* https://github.com/shapely/shapely/pull/1945.patch
* Sun May 05 2024 Ben Greiner <code@bnavigator.de>
- Update to 2.0.4
* Fix bug in ``to_wkt`` with multiple empty Z geometries (#2012).
* Fix bug in ``to_ragged_array`` for an array of Points with
missing values (#2034).
* Compatibility with numpy 2
- Release 2.0.3
* Fix regression in the ``oriented_envelope`` ufunc to accept
array-like input in case of GEOS<3.12 (#1929).
* The binary wheels are not yet compatible with a future NumPy
2.0 release, therefore a ``numpy<2`` upper pin was added to the
requirements (#1972).
* Upgraded the GEOS version in the binary wheel distributions to
3.11.3.
* Sun Dec 17 2023 Ben Greiner <code@bnavigator.de>
- Enable sle15_python_module_pythons, but don't test with MPL
* Mon Nov 20 2023 Ana Guerrero <ana.guerrero@suse.com>
- Update to 2.0.2
[#]# Bug fixes:
* Fix regression in the (in)equality comparison (geom1 == geom2)
using __eq__ to not ignore the z-coordinates (#1732).
* Fix MultiPolygon() constructor to accept polygons without
holes (#1850).
* Fix minimum_rotated_rectangle (oriented_envelope) to
always return the minimum area solution (instead of minimum
width). In practice, it will use the GEOS implementation only
for GEOS 3.12+, and for older GEOS versions fall back to
the implementation that was included in Shapely < 2 (#1670).
* Fix from_ragged_array to work with read-only array input
(#1744).
* Fix the handling of z coordinates shapely.ops.substring
(#1699).
* Sat Sep 23 2023 Ben Greiner <code@bnavigator.de>
- Update to 2.0.1
[#]# Bug fixes:
* Fix regression in the Polygon() constructor taking a sequence
of Points (#1662).
* Fix regression in the geometry constructors when passing
decimal.Decimal coordinate values (#1707).
* Fix STRtree() to not make the passed geometry array immutable
as side-effect of the constructor (#1714).
* Fix the directed keyword in shapely.ops.linemerge() (#1695).
[#]# Improvements:
* Expose the function to get a matplotlib Patch object from a
(Multi)Polygon (without already plotting it) publicly as
:func:shapely.plotting.patch_from_polygon (#1704).
- Release 2.0.0
* Shapely version 2.0.0 is a major release featuring a complete
refactor of the internals and new vectorized (element-wise)
array operations providing considerable performance
improvements (based on the developments in the PyGEOS package),
along with several breaking API changes and many feature
improvements.
- Full release notes and detailed description:
* https://shapely.readthedocs.io/en/latest/release/2.x.html
* Sat Oct 01 2022 andy great <andythe_great@pm.me>
- Update to version 1.8.4.
* The new c_geom_p type caused a regression and has been removed
(#1487).
- Update for version 1.8.3.
* Deprecations:
* The STRtree class will be changed in 2.0.0 and will not be
compatible with the class in versions 1.8.x. This change
obsoletes the deprecation announcement in 1.8a3 (below).
* Bug fixes:
* The signature for GEOSMinimumClearance has been corrected,
fixing an issue affecting aarch64-darwin (#1480)
* Return and arg types have been corrected and made more strict
for area, length, and distance properties.
* A new c_geom_p type has been created to replace c_void_p when
calling GEOS functions (#1479).
* An incorrect polygon-line intersection (#1427) has been fixed
in GEOS 3.10.3,mwhich will be included in wheels published
to PyPI.
* GEOS buffer parameters are now destroyed, fixing a memory
leak (#1440).
- Remove patch, fix upstream.
Shapely-issue1436-ef380ba-geos311.patch
/usr/lib/python3.11/site-packages/shapely /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/INSTALLER /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/METADATA /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/RECORD /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/REQUESTED /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/WHEEL /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/licenses /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/licenses/LICENSE.txt /usr/lib/python3.11/site-packages/shapely-2.1.2.dist-info/top_level.txt /usr/lib/python3.11/site-packages/shapely/__init__.py /usr/lib/python3.11/site-packages/shapely/__pycache__ /usr/lib/python3.11/site-packages/shapely/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_coverage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_coverage.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_enum.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_enum.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_geometry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_geometry.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_ragged_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_ragged_array.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_version.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/_version.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/affinity.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/affinity.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/conftest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/conftest.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/constructive.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/constructive.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/coordinates.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/coordinates.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/coords.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/coords.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/creation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/creation.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/decorators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/decorators.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/errors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/errors.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/geos.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/geos.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/io.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/io.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/linear.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/linear.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/measurement.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/measurement.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/ops.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/ops.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/plotting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/plotting.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/predicates.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/predicates.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/prepared.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/prepared.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/set_operations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/set_operations.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/speedups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/speedups.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/strtree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/strtree.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/testing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/testing.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/validation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/validation.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/wkb.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/wkb.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/wkt.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/__pycache__/wkt.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/_coverage.py /usr/lib/python3.11/site-packages/shapely/_enum.py /usr/lib/python3.11/site-packages/shapely/_geometry.py /usr/lib/python3.11/site-packages/shapely/_geometry_helpers.cpython-311-i386-linux-gnu.so /usr/lib/python3.11/site-packages/shapely/_geos.cpython-311-i386-linux-gnu.so /usr/lib/python3.11/site-packages/shapely/_geos.pxd /usr/lib/python3.11/site-packages/shapely/_pygeos_api.pxd /usr/lib/python3.11/site-packages/shapely/_ragged_array.py /usr/lib/python3.11/site-packages/shapely/_version.py /usr/lib/python3.11/site-packages/shapely/affinity.py /usr/lib/python3.11/site-packages/shapely/algorithms /usr/lib/python3.11/site-packages/shapely/algorithms/__init__.py /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__ /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/_oriented_envelope.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/_oriented_envelope.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/cga.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/cga.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/polylabel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/__pycache__/polylabel.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/algorithms/_oriented_envelope.py /usr/lib/python3.11/site-packages/shapely/algorithms/cga.py /usr/lib/python3.11/site-packages/shapely/algorithms/polylabel.py /usr/lib/python3.11/site-packages/shapely/conftest.py /usr/lib/python3.11/site-packages/shapely/constructive.py /usr/lib/python3.11/site-packages/shapely/coordinates.py /usr/lib/python3.11/site-packages/shapely/coords.py /usr/lib/python3.11/site-packages/shapely/creation.py /usr/lib/python3.11/site-packages/shapely/decorators.py /usr/lib/python3.11/site-packages/shapely/errors.py /usr/lib/python3.11/site-packages/shapely/geometry /usr/lib/python3.11/site-packages/shapely/geometry/__init__.py /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__ /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/base.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/collection.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/collection.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/geo.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/geo.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/linestring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/linestring.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/multilinestring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/multilinestring.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/multipoint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/multipoint.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/multipolygon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/multipolygon.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/point.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/point.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/polygon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/geometry/__pycache__/polygon.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/geometry/base.py /usr/lib/python3.11/site-packages/shapely/geometry/collection.py /usr/lib/python3.11/site-packages/shapely/geometry/geo.py /usr/lib/python3.11/site-packages/shapely/geometry/linestring.py /usr/lib/python3.11/site-packages/shapely/geometry/multilinestring.py /usr/lib/python3.11/site-packages/shapely/geometry/multipoint.py /usr/lib/python3.11/site-packages/shapely/geometry/multipolygon.py /usr/lib/python3.11/site-packages/shapely/geometry/point.py /usr/lib/python3.11/site-packages/shapely/geometry/polygon.py /usr/lib/python3.11/site-packages/shapely/geos.py /usr/lib/python3.11/site-packages/shapely/io.py /usr/lib/python3.11/site-packages/shapely/lib.cpython-311-i386-linux-gnu.so /usr/lib/python3.11/site-packages/shapely/linear.py /usr/lib/python3.11/site-packages/shapely/measurement.py /usr/lib/python3.11/site-packages/shapely/ops.py /usr/lib/python3.11/site-packages/shapely/plotting.py /usr/lib/python3.11/site-packages/shapely/predicates.py /usr/lib/python3.11/site-packages/shapely/prepared.py /usr/lib/python3.11/site-packages/shapely/set_operations.py /usr/lib/python3.11/site-packages/shapely/speedups.py /usr/lib/python3.11/site-packages/shapely/strtree.py /usr/lib/python3.11/site-packages/shapely/testing.py /usr/lib/python3.11/site-packages/shapely/tests /usr/lib/python3.11/site-packages/shapely/tests/__init__.py /usr/lib/python3.11/site-packages/shapely/tests/__pycache__ /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/common.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/common.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_constructive.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_constructive.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_coordinates.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_coordinates.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_coverage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_coverage.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_creation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_creation.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_creation_indices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_creation_indices.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_decorators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_decorators.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_geometry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_geometry.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_io.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_io.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_linear.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_linear.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_measurement.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_measurement.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_misc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_misc.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_plotting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_plotting.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_predicates.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_predicates.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_ragged_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_ragged_array.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_set_operations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_set_operations.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_strtree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_strtree.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_testing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/__pycache__/test_testing.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/common.py /usr/lib/python3.11/site-packages/shapely/tests/geometry /usr/lib/python3.11/site-packages/shapely/tests/geometry/__init__.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__ /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_collection.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_collection.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_coords.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_coords.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_decimal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_decimal.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_emptiness.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_emptiness.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_equality.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_equality.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_format.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_format.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_geometry_base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_geometry_base.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_hash.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_hash.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_linestring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_linestring.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multi.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multi.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multilinestring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multilinestring.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multipoint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multipoint.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multipolygon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_multipolygon.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_point.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_point.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_polygon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/__pycache__/test_polygon.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_collection.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_coords.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_decimal.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_emptiness.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_equality.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_format.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_geometry_base.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_hash.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_linestring.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_multi.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_multilinestring.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_multipoint.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_multipolygon.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_point.py /usr/lib/python3.11/site-packages/shapely/tests/geometry/test_polygon.py /usr/lib/python3.11/site-packages/shapely/tests/legacy /usr/lib/python3.11/site-packages/shapely/tests/legacy/__init__.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__ /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/conftest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/conftest.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_affinity.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_affinity.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_box.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_box.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_buffer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_buffer.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_cga.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_cga.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_clip_by_rect.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_clip_by_rect.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_create_inconsistent_dimensionality.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_create_inconsistent_dimensionality.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_delaunay.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_delaunay.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_empty_polygons.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_empty_polygons.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_equality.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_equality.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_geointerface.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_geointerface.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_invalid_geometries.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_invalid_geometries.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_linear_referencing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_linear_referencing.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_linemerge.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_linemerge.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_locale.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_locale.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_make_valid.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_make_valid.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_mapping.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_mapping.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_minimum_clearance.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_minimum_clearance.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_ndarrays.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_ndarrays.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_nearest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_nearest.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_operations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_operations.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_operators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_operators.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_orient.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_orient.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_parallel_offset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_parallel_offset.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_persist.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_persist.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_pickle.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_pickle.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_polygonize.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_polygonize.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_polylabel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_polylabel.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_predicates.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_predicates.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_prepared.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_prepared.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_products_z.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_products_z.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_shape.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_shape.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_shared_paths.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_shared_paths.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_singularity.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_singularity.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_snap.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_snap.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_split.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_split.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_substring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_substring.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_svg.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_svg.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_transform.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_transform.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_union.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_union.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_validation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_validation.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_vectorized.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_vectorized.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_voronoi_diagram.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_voronoi_diagram.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_wkb.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_wkb.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_wkt.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/test_wkt.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/threading_test.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/__pycache__/threading_test.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/tests/legacy/conftest.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_affinity.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_box.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_buffer.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_cga.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_clip_by_rect.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_create_inconsistent_dimensionality.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_delaunay.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_empty_polygons.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_equality.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_geointerface.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_invalid_geometries.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_linear_referencing.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_linemerge.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_locale.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_make_valid.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_mapping.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_minimum_clearance.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_ndarrays.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_nearest.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_operations.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_operators.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_orient.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_parallel_offset.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_persist.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_pickle.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_polygonize.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_polylabel.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_predicates.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_prepared.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_products_z.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_shape.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_shared_paths.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_singularity.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_snap.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_split.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_substring.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_svg.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_transform.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_union.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_validation.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_vectorized.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_voronoi_diagram.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_wkb.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/test_wkt.py /usr/lib/python3.11/site-packages/shapely/tests/legacy/threading_test.py /usr/lib/python3.11/site-packages/shapely/tests/test_constructive.py /usr/lib/python3.11/site-packages/shapely/tests/test_coordinates.py /usr/lib/python3.11/site-packages/shapely/tests/test_coverage.py /usr/lib/python3.11/site-packages/shapely/tests/test_creation.py /usr/lib/python3.11/site-packages/shapely/tests/test_creation_indices.py /usr/lib/python3.11/site-packages/shapely/tests/test_decorators.py /usr/lib/python3.11/site-packages/shapely/tests/test_geometry.py /usr/lib/python3.11/site-packages/shapely/tests/test_io.py /usr/lib/python3.11/site-packages/shapely/tests/test_linear.py /usr/lib/python3.11/site-packages/shapely/tests/test_measurement.py /usr/lib/python3.11/site-packages/shapely/tests/test_misc.py /usr/lib/python3.11/site-packages/shapely/tests/test_plotting.py /usr/lib/python3.11/site-packages/shapely/tests/test_predicates.py /usr/lib/python3.11/site-packages/shapely/tests/test_ragged_array.py /usr/lib/python3.11/site-packages/shapely/tests/test_set_operations.py /usr/lib/python3.11/site-packages/shapely/tests/test_strtree.py /usr/lib/python3.11/site-packages/shapely/tests/test_testing.py /usr/lib/python3.11/site-packages/shapely/validation.py /usr/lib/python3.11/site-packages/shapely/vectorized /usr/lib/python3.11/site-packages/shapely/vectorized/__init__.py /usr/lib/python3.11/site-packages/shapely/vectorized/__pycache__ /usr/lib/python3.11/site-packages/shapely/vectorized/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/shapely/vectorized/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/shapely/wkb.py /usr/lib/python3.11/site-packages/shapely/wkt.py /usr/share/doc/packages/python311-Shapely /usr/share/doc/packages/python311-Shapely/CREDITS.txt /usr/share/doc/packages/python311-Shapely/README.rst /usr/share/doc/packages/python311-Shapely/constructive.rst /usr/share/doc/packages/python311-Shapely/coordinates.rst /usr/share/doc/packages/python311-Shapely/coverage.rst /usr/share/doc/packages/python311-Shapely/creation.rst /usr/share/doc/packages/python311-Shapely/design.rst /usr/share/doc/packages/python311-Shapely/geometry.rst /usr/share/doc/packages/python311-Shapely/index.rst /usr/share/doc/packages/python311-Shapely/installation.rst /usr/share/doc/packages/python311-Shapely/io.rst /usr/share/doc/packages/python311-Shapely/linear.rst /usr/share/doc/packages/python311-Shapely/manual.rst /usr/share/doc/packages/python311-Shapely/measurement.rst /usr/share/doc/packages/python311-Shapely/migration.rst /usr/share/doc/packages/python311-Shapely/migration_pygeos.rst /usr/share/doc/packages/python311-Shapely/plotting.rst /usr/share/doc/packages/python311-Shapely/predicates.rst /usr/share/doc/packages/python311-Shapely/properties.rst /usr/share/doc/packages/python311-Shapely/release.rst /usr/share/doc/packages/python311-Shapely/set_operations.rst /usr/share/doc/packages/python311-Shapely/strtree.rst /usr/share/doc/packages/python311-Shapely/testing.rst /usr/share/licenses/python311-Shapely /usr/share/licenses/python311-Shapely/LICENSE.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Mar 26 22:25:00 2026