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: 4 months ago
JSON representation
:earth_africa: Python wrapper for the C lambert library
- Host: GitHub
- URL: https://github.com/yageek/lambert-python
- Owner: yageek
- Created: 2014-02-08T23:43:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-06-09T13:40:10.000Z (about 8 years ago)
- Last Synced: 2025-02-17T09:38:56.555Z (5 months ago)
- Topics: coordinates, lambert, python, wgs84, wrapper
- Language: C
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.