| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 
 | Metadata-Version: 1.1
Name: pyepsg
Version: 0.4.0
Summary: Easy access to the EPSG database via http://epsg.io/
Home-page: https://github.com/rhattersley/pyepsg
Author: Richard Hattersley
Author-email: rhattersley@gmail.com
License: UNKNOWN
Description: pyepsg
        ======
        
        |build_status|
        
        
        A simple interface to http://epsg.io/
        
        For example, we can request the details for the projected coordinate system
        identified by EPSG code 21781, aka. "Swiss CH1903 / LV03"::
        
            >>> projection = pyepsg.get(21781)
            >>> projection
            <ProjectedCRS: 21781, CH1903 / LV03>
            >>> projection.domain_of_validity()
            [5.97, 10.49, 45.83, 47.81]
            >>> projection.cartesian_cs.axes
            [<Axis: east / metre>, <Axis: north / metre>]
        
        Projected and geodetic coordinate systems can also be converted to various
        other forms::
        
            >>> print(projection.as_proj4()[:70] + '...')
            +proj=somerc +lat_0=46.95240555555556 +lon_0=7.439583333333333 +k_0=1 ...
            >>> print(projection.as_wkt()[:70] + '...')
            PROJCS["CH1903 / LV03",GEOGCS["CH1903",DATUM["CH1903",SPHEROID["Bessel...
        
        .. |build_status| image:: https://secure.travis-ci.org/rhattersley/pyepsg.png
           :alt: Build Status
           :target: http://travis-ci.org/rhattersley/pyepsg
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering :: GIS
 |