Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python310-Shapely-2.0.2-2.4 RPM for armv6hl

From OpenSuSE Ports Tumbleweed for armv6hl

Name: python310-Shapely Distribution: openSUSE Tumbleweed
Version: 2.0.2 Vendor: openSUSE
Release: 2.4 Build date: Sun Dec 17 17:47:49 2023
Group: Unspecified Build host: reproducible
Size: 2440541 Source RPM: python-Shapely-2.0.2-2.4.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.

Provides

Requires

License

BSD-3-Clause

Changelog

* 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
* Tue Jul 19 2022 Ben Greiner <code@bnavigator.de>
  - Add Shapely-issue1436-ef380ba-geos311.patch
    * gh#shapely/shapely#1436 -- work around issue with geos 3.11.0
* Mon Jun 20 2022 Ben Greiner <code@bnavigator.de>
  - Update to 1.8.2
    - Make Polygons and MultiPolygons closed by definition, like
      LinearRings. Resolves #1246.
    - Perform frozen app check for GEOS before conda env check on
      macos as we already do on linux (#1301).
    - Fix leak of GEOS coordinate sequence in nearest_points reported
      in #1098.
  - Release 1.8.1
    * Wheels for 1.8.1 published on PyPI include GEOS 3.10.2. This
      version is the best version of GDAL yet. Discrepancies in
      behavior compared to previous versions are considered to be
      improvements.
    * Shapely 1.8.1 works with Pythons 3.6-3.10.
    * Require Cython >= 0.29.24 to support Python 3.10 (#1224).
    * Fix array_interface_base (#1235).
  - Fix libgeos* runtime requirement undetected due to the ctypes
    load
* Mon Jan 10 2022 Ben Greiner <code@bnavigator.de>
  - Update to 1.8.0
    * Shapely 1.8.0 is a transitional version. There are a few bug
      fixes and new features, but it largely exists to warn about the
      upcoming changes in 2.0.0. See the new migration guide for more
      details on how to update your code from Shapely 1.8 to 2.0.
    * Shapely 1.8.0 supports only Python versions >= 3.6. The release
      is compatible with GEOS versions 3.6-3.10.
    * Deprecations: The following functions and geometry attributes
      and methods will be removed in version 2.0.0.
    - ops.cascaded_union
    - BaseGeometry.empty
    - BaseGeometry.ctypes and __array_interface__
    - multi-part geometry __len__
    - setting custom attributes on geometry objects
    - BaseGeometry.almost_exact
    - Deprecation warnings will be emitted in 1.8.0 when any of
      these features are used.
    * The deprecated to_wkb and to_wkt methods of BaseGeometry have
      been removed.
    * The STRtree nearest* methods now take an optional argument that
      specifies exclusion of the input geometry from results (#1115).
    * A GeometryTypeError has been added to shapely.errors and is
      consistently raised instead of TypeError or ValueError as in
      version 1.7. For backwards compatibility, the new exception
      will derive from TypeError and Value error until version 2.0
      (#1099).
    * The STRtree class constructor now takes an optional second
      argument, a sequence of objects to be stored in the tree. If
      not provided, the sequence indices of the geometries will be
      stored, as before (#1112).
    * The STRtree class has new query_geoms, query_items,
      nearest_geom, and nearest_item methods (#1112). The query and
      nearest methods remain as aliases for query_geoms and
      nearest_geom.
    * A normalize method has been added to geometry classes, exposing
      the GEOSNormalize algorithm (#1090).
    * STRtree instances have a new default capacity of 10 items per
      node (#1070).
    * The new shapely.ops.voronoi_diagram computes the Voronoi
      Diagram of a geometry or geometry collection (#833, #851).
    * shapely.validation.make_valid fixes invalid geometries (#883).
  - Drop Shapely-fix-svg-collection-pr1042.patch
* Sat Apr 17 2021 Ben Greiner <code@bnavigator.de>
  - Don't use and test NumPy for python36 flavor: not available on
    Tumbleweed (NEP29)
  - Make sure to test shapely.vectorized on remaining flavors by
    changing the working dir.
* Sat Jan 09 2021 Benjamin Greiner <code@bnavigator.de>
  - Add Shapely-fix-svg-collection-pr1042.patch
    gh#Toblerity/Shapely#1042 to fix failing test due to newer
    matplotlib version (and GEOS?)
* Sun Jan 03 2021 Benjamin Greiner <code@bnavigator.de>
  - Skip Python2 build. It is not supported by upstream anymore and
    the unit tests in Leap fail because of it
  - Let the %python_subpackages macro take care of the correct
    provides/obsoletes flavors. (gh#openSUSE/python-rpm-macros#66)

Files

/usr/lib/python3.10/site-packages/shapely
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info/LICENSE.txt
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info/METADATA
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info/RECORD
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info/REQUESTED
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info/WHEEL
/usr/lib/python3.10/site-packages/shapely-2.0.2.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/shapely/__init__.py
/usr/lib/python3.10/site-packages/shapely/__pycache__
/usr/lib/python3.10/site-packages/shapely/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_enum.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_enum.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_geometry.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_geometry.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_ragged_array.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_ragged_array.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_version.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/_version.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/affinity.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/affinity.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/constructive.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/constructive.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/coordinates.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/coordinates.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/coords.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/coords.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/creation.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/creation.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/decorators.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/decorators.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/errors.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/errors.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/geos.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/geos.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/io.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/io.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/linear.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/linear.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/measurement.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/measurement.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/ops.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/ops.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/plotting.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/plotting.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/predicates.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/predicates.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/prepared.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/prepared.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/set_operations.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/set_operations.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/speedups.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/speedups.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/strtree.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/strtree.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/testing.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/testing.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/validation.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/validation.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/wkb.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/wkb.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/wkt.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/__pycache__/wkt.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/_enum.py
/usr/lib/python3.10/site-packages/shapely/_geometry.py
/usr/lib/python3.10/site-packages/shapely/_geometry_helpers.cpython-310-arm-linux-gnueabihf.so
/usr/lib/python3.10/site-packages/shapely/_geos.cpython-310-arm-linux-gnueabihf.so
/usr/lib/python3.10/site-packages/shapely/_geos.pxd
/usr/lib/python3.10/site-packages/shapely/_pygeos_api.pxd
/usr/lib/python3.10/site-packages/shapely/_ragged_array.py
/usr/lib/python3.10/site-packages/shapely/_version.py
/usr/lib/python3.10/site-packages/shapely/affinity.py
/usr/lib/python3.10/site-packages/shapely/algorithms
/usr/lib/python3.10/site-packages/shapely/algorithms/__init__.py
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/_oriented_envelope.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/_oriented_envelope.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/cga.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/cga.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/polylabel.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/__pycache__/polylabel.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/algorithms/_oriented_envelope.py
/usr/lib/python3.10/site-packages/shapely/algorithms/cga.py
/usr/lib/python3.10/site-packages/shapely/algorithms/polylabel.py
/usr/lib/python3.10/site-packages/shapely/constructive.py
/usr/lib/python3.10/site-packages/shapely/coordinates.py
/usr/lib/python3.10/site-packages/shapely/coords.py
/usr/lib/python3.10/site-packages/shapely/creation.py
/usr/lib/python3.10/site-packages/shapely/decorators.py
/usr/lib/python3.10/site-packages/shapely/errors.py
/usr/lib/python3.10/site-packages/shapely/geometry
/usr/lib/python3.10/site-packages/shapely/geometry/__init__.py
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/base.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/base.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/collection.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/collection.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/conftest.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/conftest.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/geo.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/geo.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/linestring.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/linestring.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/multilinestring.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/multilinestring.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/multipoint.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/multipoint.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/multipolygon.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/multipolygon.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/point.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/point.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/polygon.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/__pycache__/polygon.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/geometry/base.py
/usr/lib/python3.10/site-packages/shapely/geometry/collection.py
/usr/lib/python3.10/site-packages/shapely/geometry/conftest.py
/usr/lib/python3.10/site-packages/shapely/geometry/geo.py
/usr/lib/python3.10/site-packages/shapely/geometry/linestring.py
/usr/lib/python3.10/site-packages/shapely/geometry/multilinestring.py
/usr/lib/python3.10/site-packages/shapely/geometry/multipoint.py
/usr/lib/python3.10/site-packages/shapely/geometry/multipolygon.py
/usr/lib/python3.10/site-packages/shapely/geometry/point.py
/usr/lib/python3.10/site-packages/shapely/geometry/polygon.py
/usr/lib/python3.10/site-packages/shapely/geos.py
/usr/lib/python3.10/site-packages/shapely/io.py
/usr/lib/python3.10/site-packages/shapely/lib.cpython-310-arm-linux-gnueabihf.so
/usr/lib/python3.10/site-packages/shapely/linear.py
/usr/lib/python3.10/site-packages/shapely/measurement.py
/usr/lib/python3.10/site-packages/shapely/ops.py
/usr/lib/python3.10/site-packages/shapely/plotting.py
/usr/lib/python3.10/site-packages/shapely/predicates.py
/usr/lib/python3.10/site-packages/shapely/prepared.py
/usr/lib/python3.10/site-packages/shapely/set_operations.py
/usr/lib/python3.10/site-packages/shapely/speedups.py
/usr/lib/python3.10/site-packages/shapely/strtree.py
/usr/lib/python3.10/site-packages/shapely/testing.py
/usr/lib/python3.10/site-packages/shapely/tests
/usr/lib/python3.10/site-packages/shapely/tests/__init__.py
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/common.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/common.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_constructive.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_constructive.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_coordinates.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_coordinates.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_creation.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_creation.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_creation_indices.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_creation_indices.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_geometry.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_geometry.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_io.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_io.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_linear.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_linear.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_measurement.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_measurement.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_misc.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_misc.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_plotting.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_plotting.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_predicates.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_predicates.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_ragged_array.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_ragged_array.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_set_operations.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_set_operations.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_strtree.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_strtree.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_testing.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/__pycache__/test_testing.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/common.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__init__.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_collection.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_collection.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_coords.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_coords.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_decimal.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_decimal.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_emptiness.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_emptiness.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_equality.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_equality.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_format.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_format.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_geometry_base.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_geometry_base.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_hash.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_hash.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_linestring.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_linestring.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multi.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multi.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multilinestring.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multilinestring.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multipoint.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multipoint.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multipolygon.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_multipolygon.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_point.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_point.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_polygon.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/__pycache__/test_polygon.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_collection.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_coords.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_decimal.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_emptiness.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_equality.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_format.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_geometry_base.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_hash.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_linestring.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_multi.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_multilinestring.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_multipoint.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_multipolygon.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_point.py
/usr/lib/python3.10/site-packages/shapely/tests/geometry/test_polygon.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__init__.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/conftest.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/conftest.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_affinity.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_affinity.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_box.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_box.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_buffer.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_buffer.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_cga.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_cga.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_clip_by_rect.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_clip_by_rect.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_create_inconsistent_dimensionality.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_create_inconsistent_dimensionality.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_delaunay.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_delaunay.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_empty_polygons.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_empty_polygons.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_equality.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_equality.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_geointerface.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_geointerface.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_invalid_geometries.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_invalid_geometries.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_linear_referencing.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_linear_referencing.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_linemerge.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_linemerge.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_locale.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_locale.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_make_valid.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_make_valid.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_mapping.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_mapping.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_minimum_clearance.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_minimum_clearance.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_ndarrays.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_ndarrays.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_nearest.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_nearest.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_operations.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_operations.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_operators.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_operators.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_orient.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_orient.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_parallel_offset.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_parallel_offset.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_persist.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_persist.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_pickle.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_pickle.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_polygonize.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_polygonize.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_polylabel.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_polylabel.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_predicates.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_predicates.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_prepared.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_prepared.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_products_z.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_products_z.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_shape.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_shape.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_shared_paths.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_shared_paths.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_singularity.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_singularity.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_snap.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_snap.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_split.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_split.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_substring.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_substring.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_svg.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_svg.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_transform.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_transform.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_union.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_union.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_validation.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_validation.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_vectorized.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_vectorized.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_voronoi_diagram.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_voronoi_diagram.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_wkb.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_wkb.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_wkt.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/test_wkt.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/threading_test.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/__pycache__/threading_test.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/tests/legacy/conftest.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_affinity.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_box.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_buffer.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_cga.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_clip_by_rect.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_create_inconsistent_dimensionality.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_delaunay.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_empty_polygons.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_equality.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_geointerface.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_invalid_geometries.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_linear_referencing.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_linemerge.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_locale.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_make_valid.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_mapping.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_minimum_clearance.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_ndarrays.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_nearest.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_operations.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_operators.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_orient.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_parallel_offset.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_persist.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_pickle.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_polygonize.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_polylabel.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_predicates.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_prepared.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_products_z.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_shape.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_shared_paths.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_singularity.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_snap.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_split.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_substring.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_svg.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_transform.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_union.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_validation.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_vectorized.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_voronoi_diagram.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_wkb.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/test_wkt.py
/usr/lib/python3.10/site-packages/shapely/tests/legacy/threading_test.py
/usr/lib/python3.10/site-packages/shapely/tests/test_constructive.py
/usr/lib/python3.10/site-packages/shapely/tests/test_coordinates.py
/usr/lib/python3.10/site-packages/shapely/tests/test_creation.py
/usr/lib/python3.10/site-packages/shapely/tests/test_creation_indices.py
/usr/lib/python3.10/site-packages/shapely/tests/test_geometry.py
/usr/lib/python3.10/site-packages/shapely/tests/test_io.py
/usr/lib/python3.10/site-packages/shapely/tests/test_linear.py
/usr/lib/python3.10/site-packages/shapely/tests/test_measurement.py
/usr/lib/python3.10/site-packages/shapely/tests/test_misc.py
/usr/lib/python3.10/site-packages/shapely/tests/test_plotting.py
/usr/lib/python3.10/site-packages/shapely/tests/test_predicates.py
/usr/lib/python3.10/site-packages/shapely/tests/test_ragged_array.py
/usr/lib/python3.10/site-packages/shapely/tests/test_set_operations.py
/usr/lib/python3.10/site-packages/shapely/tests/test_strtree.py
/usr/lib/python3.10/site-packages/shapely/tests/test_testing.py
/usr/lib/python3.10/site-packages/shapely/validation.py
/usr/lib/python3.10/site-packages/shapely/vectorized
/usr/lib/python3.10/site-packages/shapely/vectorized/__init__.py
/usr/lib/python3.10/site-packages/shapely/vectorized/__pycache__
/usr/lib/python3.10/site-packages/shapely/vectorized/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/shapely/vectorized/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/shapely/wkb.py
/usr/lib/python3.10/site-packages/shapely/wkt.py
/usr/share/doc/packages/python310-Shapely
/usr/share/doc/packages/python310-Shapely/CREDITS.txt
/usr/share/doc/packages/python310-Shapely/README.rst
/usr/share/doc/packages/python310-Shapely/constructive.rst
/usr/share/doc/packages/python310-Shapely/coordinates.rst
/usr/share/doc/packages/python310-Shapely/creation.rst
/usr/share/doc/packages/python310-Shapely/design.rst
/usr/share/doc/packages/python310-Shapely/geometry.rst
/usr/share/doc/packages/python310-Shapely/index.rst
/usr/share/doc/packages/python310-Shapely/installation.rst
/usr/share/doc/packages/python310-Shapely/io.rst
/usr/share/doc/packages/python310-Shapely/linear.rst
/usr/share/doc/packages/python310-Shapely/manual.rst
/usr/share/doc/packages/python310-Shapely/measurement.rst
/usr/share/doc/packages/python310-Shapely/migration.rst
/usr/share/doc/packages/python310-Shapely/migration_pygeos.rst
/usr/share/doc/packages/python310-Shapely/predicates.rst
/usr/share/doc/packages/python310-Shapely/properties.rst
/usr/share/doc/packages/python310-Shapely/release.rst
/usr/share/doc/packages/python310-Shapely/set_operations.rst
/usr/share/doc/packages/python310-Shapely/strtree.rst
/usr/share/doc/packages/python310-Shapely/testing.rst
/usr/share/licenses/python310-Shapely
/usr/share/licenses/python310-Shapely/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Apr 27 00:31:59 2024