Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yageek/lambert-rust
:earth_africa: Crate helping to convert Lambert coordinates to WGS84
https://github.com/yageek/lambert-rust
coordinates lambert rust wgs84
Last synced: about 1 month ago
JSON representation
:earth_africa: Crate helping to convert Lambert coordinates to WGS84
- Host: GitHub
- URL: https://github.com/yageek/lambert-rust
- Owner: yageek
- License: other
- Created: 2016-01-05T15:07:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-27T13:17:58.000Z (over 6 years ago)
- Last Synced: 2024-11-19T11:01:02.883Z (about 1 month ago)
- Topics: coordinates, lambert, rust, wgs84
- Language: Rust
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE.md
Awesome Lists containing this project
README
# lambert-rust
[![Crates version](https://img.shields.io/crates/v/lambert.svg?)](https://crates.io/crates/lambert)
[![Build Status](https://travis-ci.org/yageek/lambert-rust.svg?branch=master)](https://travis-ci.org/yageek/lambert-rust)
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE.md)lambert-rust is a crate helping to convert Lambert coordinates to WGS84.
# Usage
```rust
let point = Point::new(369419.0, 1986498.0, 0.0)
.wgs84_from_meter(Zone::Lambert93)
.convert_unit(AngleUnit::Radian, AngleUnit::Degree);
println!("WGS84 Lat:{}, Lon:{}", point.y, point.x);
```