Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

:earth_africa: lambert-dart is a crate helping to convert Lambert coordinates to WGS84.
https://github.com/yageek/lambert-dart

coordinates dart lambert wgs84

Last synced: about 1 month ago
JSON representation

:earth_africa: lambert-dart is a crate helping to convert Lambert coordinates to WGS84.

Awesome Lists containing this project

README

        

This package helps to convert geographical point from a Lambert coordinate system
to the WGS84 coordinate system.

## Usage

```dart
import 'package:lambert/lambert.dart';

main() {
var point = Point(668832.5384,6950138.7285,0.0);
var result = point.convert(Zone.L93).degree();

print("WGS84 Lat: ${result.y} Lon:${result.x}");
}
```