Date: Wed, 27 Jun 2018 14:02:09 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473441 - in head/graphics: . py-geopandas Message-ID: <201806271402.w5RE292j081745@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Wed Jun 27 14:02:09 2018 New Revision: 473441 URL: https://svnweb.freebsd.org/changeset/ports/473441 Log: 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. WWW: https://pypi.python.org/pypi/geopandas PR: 228666 Submitted by: lbartoletti@tuxfamily.org Added: head/graphics/py-geopandas/ head/graphics/py-geopandas/Makefile (contents, props changed) head/graphics/py-geopandas/distinfo (contents, props changed) head/graphics/py-geopandas/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Jun 27 13:58:08 2018 (r473440) +++ head/graphics/Makefile Wed Jun 27 14:02:09 2018 (r473441) @@ -896,6 +896,7 @@ SUBDIR += py-freeimagepy SUBDIR += py-gd SUBDIR += py-gdal + SUBDIR += py-geopandas SUBDIR += py-gimp SUBDIR += py-gizeh SUBDIR += py-glewpy Added: head/graphics/py-geopandas/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-geopandas/Makefile Wed Jun 27 14:02:09 2018 (r473441) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= geopandas +PORTVERSION= 0.3.0 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= lbartoletti@tuxfamily.org +COMMENT= Python tools for geographic data + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Shapely>=1.2.18:devel/py-shapely@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Fiona>=1.0.1:graphics/py-fiona@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.3:graphics/py-pyproj@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.3.0:devel/py-six@${FLAVOR} + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist cython distutils + +.include <bsd.port.mk> Added: head/graphics/py-geopandas/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-geopandas/distinfo Wed Jun 27 14:02:09 2018 (r473441) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527886569 +SHA256 (geopandas-0.3.0.tar.gz) = e63bb32a3e516d8c9bcd149c22335575defdc5896c8bdf15c836608f152a920b +SIZE (geopandas-0.3.0.tar.gz) = 891694 Added: head/graphics/py-geopandas/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-geopandas/pkg-descr Wed Jun 27 14:02:09 2018 (r473441) @@ -0,0 +1,12 @@ +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. + +WWW: https://pypi.python.org/pypi/geopandas
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806271402.w5RE292j081745>