utm 0.0.1 copy "utm: ^0.0.1" to clipboard
utm: ^0.0.1 copied to clipboard

outdated

This is a Lat Lon and UTM bidirectional converter

UTM dart #

Lat Lon and UTM bidirectional converter.
translate from Python UTM library

Usage #

import 'package:utm/utm.dart';

final utm = Utm.fromLatLon(-30, -150);
print('zone: ${utm.zone}');
print('N: ${utm.northing}');
print('E: ${utm.easting}');
print('lat: ${utm.lat}');
print('lat: ${utm.lon}');

final latlon = Utm.fromUtm(utm.easting, utm.northing, utm.zoneNumber, utm.zoneLetter);
print('lat: ${latlon.lat}');
print('lon: ${latlon.lon}');

Features and bugs #

Please file feature requests and bugs at the [issue tracker][tracker].

[tracker]:

9
likes
0
points
920
downloads

Publisher

unverified uploader

Weekly Downloads

This is a Lat Lon and UTM bidirectional converter

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

angles, meta

More

Packages that depend on utm