| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 
 | Source: python-geopandas
Section: python
Priority: optional
Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
Uploaders: Johan Van de Wauw <johan.vandewauw@gmail.com>
Build-Depends: debhelper-compat (= 13),
               dh-python,
               dh-sequence-numpy3,
               dh-sequence-python3,
               gdal-bin,
               cython3,
               ipython3,
               pybuild-plugin-pyproject,
               python3-all,
               python3-cartopy,
               python3-geopy,
               python3-matplotlib,
               python3-numpy,
               python3-numpydoc,
               python3-pandas,
               python3-psycopg2,
               python3-pyogrio,
               python3-pyproj,
               python3-pytest-cov,
               python3-pytest,
               python3-rtree,
               python3-setuptools,
               python3-shapely,
               python3-sqlalchemy
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/debian-gis-team/python-geopandas/
Vcs-Git: https://salsa.debian.org/debian-gis-team/python-geopandas.git
Homepage: http://www.geopandas.org
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-pybuild
Package: python3-geopandas
Architecture: all
Depends: python3-pandas,
         python3-pyogrio,
         python3-pyproj,
         python3-shapely,
         ${python3:Depends},
         ${misc:Depends}
Recommends: python3-geopy,
            python3-matplotlib,
            python3-psycopg2,
            python3-rtree
Description: Python3 tools for geographic data
 GeoPandas is a project to add support for geographic data to
 pandas objects.  It currently implements
 `GeoSeries` and `GeoDataFrame` types which are subclasses of
 `pandas.Series` and `pandas.DataFrame` respectively.  GeoPandas
 objects can act on shapely  geometry objects and perform geometric operations.
 .
 GeoPandas geometry operations are cartesian.  The coordinate reference
 system (crs) can be stored as an attribute on an object, and is
 automatically set when loading from a file.  Objects may be
 transformed to new coordinate systems with the `to_crs()` method.
 There is currently no enforcement of like coordinates for operations,
 but that may change in the future.
 .
 This package contains the Python 3 version of the library.
 |