mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
3d23ba68ab
- Add missing DEPENDS - Add TEST_TARGET - Take maintainership PR: 237932, 238795 Submitted by: wenheping2000@hotmail.com,rhurlin@gwdg.de Approved by: maintainer(timeout, > 30 days), portmgr@(implicit, fix build) Exp-run by: antoine@ Thanks to: antoine@, sunpoet@, rhurlin@gwdg.de
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
Cython wrapper to provide python interfaces to PROJ.4 functions.
|
|
|
|
Performs cartographic transformations and geodetic computations.
|
|
|
|
The Proj class can convert from geographic (longitude,latitude)
|
|
to native map projection (x,y) coordinates and vice versa, or
|
|
from one map projection coordinate system directly to another.
|
|
The module variable pj_list is a dictionary containing all the
|
|
available projections and their descriptions.
|
|
|
|
The Geod class can perform forward and inverse geodetic, or
|
|
Great Circle, computations. The forward computation involves
|
|
determining latitude, longitude and back azimuth of a terminus
|
|
point given the latitude and longitude of an initial point,
|
|
plus azimuth and distance. The inverse computation involves
|
|
determining the forward and back azimuths and distance given
|
|
the latitudes and longitudes of an initial and terminus point.
|
|
|
|
Input coordinates can be given as python arrays, lists/tuples,
|
|
scalars or numpy/Numeric/numarray arrays. Optimized for objects
|
|
that support the Python buffer protocol (regular python and
|
|
numpy array objects).
|
|
|
|
WWW: https://github.com/jswhit/pyproj
|