Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yageek/lambert-python
- Owner: yageek
- Created: 2014-02-08T23:43:56.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-06-09T13:40:10.000Z (over 7 years ago)
- Last Synced: 2023-09-19T23:16:46.729Z (over 1 year 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.