From owner-svn-ports-head@freebsd.org Sun Mar 7 22:09:54 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 33C135764BB; Sun, 7 Mar 2021 22:09:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dtwcx1wgjz3tR2; Sun, 7 Mar 2021 22:09:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 16B1C1DE92; Sun, 7 Mar 2021 22:09:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 127M9ohS026779; Sun, 7 Mar 2021 22:09:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 127M9o13026775; Sun, 7 Mar 2021 22:09:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202103072209.127M9o13026775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Mar 2021 22:09:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r567606 - in head/graphics: . py-urbanaccess X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/graphics: . py-urbanaccess X-SVN-Commit-Revision: 567606 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Mar 2021 22:09:54 -0000 Author: sunpoet Date: Sun Mar 7 22:09:49 2021 New Revision: 567606 URL: https://svnweb.freebsd.org/changeset/ports/567606 Log: Add py-urbanaccess 0.2.2 UrbanAccess is tool for creating multi-modal graph networks for use in multi-scale (e.g. address level to the metropolitan level) transit accessibility analyses with the network analysis tool Pandana. UrbanAccess uses open data from General Transit Feed Specification (GTFS) data to represent disparate operational schedule transit networks and pedestrian OpenStreetMap (OSM) data to represent the pedestrian network. UrbanAccess provides a generalized, computationally efficient, and unified accessibility calculation framework by linking tools for: 1) network data acquisition, validation, and processing; 2) computing an integrated pedestrian and transit weighted network graph; and 3) network analysis using Pandana. WWW: https://github.com/UDST/urbanaccess Added: head/graphics/py-urbanaccess/ head/graphics/py-urbanaccess/Makefile (contents, props changed) head/graphics/py-urbanaccess/distinfo (contents, props changed) head/graphics/py-urbanaccess/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Mar 7 22:09:42 2021 (r567605) +++ head/graphics/Makefile Sun Mar 7 22:09:49 2021 (r567606) @@ -900,6 +900,7 @@ SUBDIR += py-tifffile SUBDIR += py-toyplot SUBDIR += py-traitsui + SUBDIR += py-urbanaccess SUBDIR += py-utm SUBDIR += py-vecrec SUBDIR += py-visvis Added: head/graphics/py-urbanaccess/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-urbanaccess/Makefile Sun Mar 7 22:09:49 2021 (r567606) @@ -0,0 +1,32 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= urbanaccess +PORTVERSION= 0.2.2 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Tool for creating GTFS transit and OSM pedestrian networks + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/License.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}geopy>=1.11.0:net/py-geopy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=2.0:math/py-matplotlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>=1.11,1:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}osmnet>=0.1.4:graphics/py-osmnet@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandana>=0.2.0:graphics/py-pandana@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>=0.17.0,1:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.9.1:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scikit-learn>=0.17.1:science/py-scikit-learn@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.11:devel/py-six@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/graphics/py-urbanaccess/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-urbanaccess/distinfo Sun Mar 7 22:09:49 2021 (r567606) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614794180 +SHA256 (urbanaccess-0.2.2.tar.gz) = a00ff67488eeec62d5c68bc07f1ee6cb62dc867ae0872241544dc2e924e28939 +SIZE (urbanaccess-0.2.2.tar.gz) = 58241 Added: head/graphics/py-urbanaccess/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-urbanaccess/pkg-descr Sun Mar 7 22:09:49 2021 (r567606) @@ -0,0 +1,12 @@ +UrbanAccess is tool for creating multi-modal graph networks for use in +multi-scale (e.g. address level to the metropolitan level) transit accessibility +analyses with the network analysis tool Pandana. UrbanAccess uses open data from +General Transit Feed Specification (GTFS) data to represent disparate +operational schedule transit networks and pedestrian OpenStreetMap (OSM) data to +represent the pedestrian network. UrbanAccess provides a generalized, +computationally efficient, and unified accessibility calculation framework by +linking tools for: 1) network data acquisition, validation, and processing; 2) +computing an integrated pedestrian and transit weighted network graph; and 3) +network analysis using Pandana. + +WWW: https://github.com/UDST/urbanaccess