Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yageek/lambert-python

:earth_africa: Python wrapper for the C lambert library
https://github.com/yageek/lambert-python

coordinates lambert python wgs84 wrapper

Last synced: about 1 month ago
JSON representation

:earth_africa: Python wrapper for the C lambert library

Awesome Lists containing this project

README

        

# Description

A Python wrapper to the lambert C library.

# Installation
```
pip install pylambert
```

# Usage

```python
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.