/lambert-python

:earth_africa: Python wrapper for the C lambert library

Primary LanguageC

Description

A Python wrapper to the lambert C library.

Installation

pip install pylambert

Usage

import pylambert

# Declares origin point and translated point
a = pylambert.Point(994300.623, 113409.981)

# Converts a in Lambert Zone 1 to WGS84 - Results in degrees
a.wgs84deg(pylambert.LambertI)

print "Latitude:{} Longitude:{}".format(a.y, a.x)

License

Copyright (c) 2013 Yannick Heinrich - Released under the GPLv2 License.