Date: Sat, 1 Dec 2018 13:05:32 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486341 - in head/math: . py-vincenty Message-ID: <201812011305.wB1D5WCP029694@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Dec 1 13:05:31 2018 New Revision: 486341 URL: https://svnweb.freebsd.org/changeset/ports/486341 Log: Add py-vincenty 0.1.4 Vincenty calculates the geographical distance (in kilometers or miles) between 2 points with extreme accuracy. This library implements Vincenty's solution to the inverse geodetic problem. It is based on the WGS 84 reference ellipsoid and is accurate to within 1 mm (!) or better. This formula is widely used in geographic information systems (GIS) and is much more accurate than methods for computing the great-circle distance (which assume a spherical Earth). WWW: https://github.com/maurycyp/vincenty Added: head/math/py-vincenty/ head/math/py-vincenty/Makefile (contents, props changed) head/math/py-vincenty/distinfo (contents, props changed) head/math/py-vincenty/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Dec 1 13:01:40 2018 (r486340) +++ head/math/Makefile Sat Dec 1 13:05:31 2018 (r486341) @@ -778,6 +778,7 @@ SUBDIR += py-theano SUBDIR += py-ufl SUBDIR += py-uncertainties + SUBDIR += py-vincenty SUBDIR += py-viper SUBDIR += py-yt SUBDIR += py-z3-solver Added: head/math/py-vincenty/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-vincenty/Makefile Sat Dec 1 13:05:31 2018 (r486341) @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= vincenty +PORTVERSION= 0.1.4 +CATEGORIES= math python geography +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Calculate the geographical distance between 2 points + +LICENSE= UNLICENSE + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/math/py-vincenty/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-vincenty/distinfo Sat Dec 1 13:05:31 2018 (r486341) @@ -0,0 +1,3 @@ +TIMESTAMP = 1543607082 +SHA256 (vincenty-0.1.4.tar.gz) = eaa2f2de835f369cbd71c1a01ccd4e0d412da0f4aeef7c9692242b9ce182785a +SIZE (vincenty-0.1.4.tar.gz) = 2757 Added: head/math/py-vincenty/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-vincenty/pkg-descr Sat Dec 1 13:05:31 2018 (r486341) @@ -0,0 +1,12 @@ +Vincenty calculates the geographical distance (in kilometers or miles) between 2 +points with extreme accuracy. + +This library implements Vincenty's solution to the inverse geodetic problem. It +is based on the WGS 84 reference ellipsoid and is accurate to within 1 mm (!) or +better. + +This formula is widely used in geographic information systems (GIS) and is much +more accurate than methods for computing the great-circle distance (which assume +a spherical Earth). + +WWW: https://github.com/maurycyp/vincenty
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812011305.wB1D5WCP029694>