Skip to content

Commit fa9a000

Browse files
authoredMar 9, 2017
Merge pull request #4240 from tomkralidis/issue-16266
add pyproj to Python deps
2 parents b7da275 + 05e7480 commit fa9a000

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+24552
-1
lines changed
 

‎python/ext-libs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ MACRO(EXT_PYLIB lib)
3333
ENDIF(WITH_INTERNAL_${ulib})
3434
ENDMACRO(EXT_PYLIB lib)
3535

36-
FOREACH(pkg httplib2 jinja2 markupsafe owslib pygments dateutil pytz yaml nose2)
36+
FOREACH(pkg httplib2 jinja2 markupsafe owslib pygments dateutil pytz yaml nose2 pyproj)
3737
EXT_PYLIB(${pkg})
3838
ENDFOREACH(pkg)
3939

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Metadata-Version: 1.1
2+
Name: pyproj
3+
Version: 1.9.5.1
4+
Summary: Python interface to PROJ.4 library
5+
Home-page: https://github.com/jswhit/pyproj
6+
Author: Jeff Whitaker
7+
Author-email: jeffrey.s.whitaker@noaa.gov
8+
License: OSI Approved
9+
Download-URL: http://python.org/pypi/pyproj
10+
Description:
11+
Performs cartographic transformations between geographic (lat/lon)
12+
and map projection (x/y) coordinates. Can also transform directly
13+
from one map projection coordinate system to another.
14+
Coordinates can be given as numpy arrays, python arrays, lists or scalars.
15+
Optimized for numpy arrays.
16+
Keywords: python,map projections,GIS,mapping,maps
17+
Platform: any
18+
Classifier: Development Status :: 4 - Beta
19+
Classifier: Intended Audience :: Science/Research
20+
Classifier: License :: OSI Approved
21+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
22+
Classifier: Topic :: Scientific/Engineering :: GIS
23+
Classifier: Topic :: Scientific/Engineering :: Mathematics
24+
Classifier: Operating System :: OS Independent

0 commit comments

Comments
 (0)
Please sign in to comment.