https://github.com/yageek/lambert-dart
:earth_africa: lambert-dart is a library helping to convert Lambert coordinates to WGS84.
https://github.com/yageek/lambert-dart
coordinates dart lambert wgs84
Last synced: about 2 months ago
JSON representation
:earth_africa: lambert-dart is a library helping to convert Lambert coordinates to WGS84.
- Host: GitHub
- URL: https://github.com/yageek/lambert-dart
- Owner: yageek
- License: mit
- Created: 2016-01-20T19:04:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-21T12:15:35.000Z (about 4 years ago)
- Last Synced: 2025-01-26T01:46:48.331Z (4 months ago)
- Topics: coordinates, dart, lambert, wgs84
- Language: Dart
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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}");
}
```