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

outdated

Utility for converting between WGS84 lat/lng and MGRS coordinates (Dart version of proj4js/mgrs).

mgrs_dart #

Utility for converting between WGS84 lat/lng and MGRS coordinates (Dart version of proj4js/mgrs).

Has 2 methods

  • forward, takes an array of [lon,lat] and optional accuracy and returns an mgrs string
  • toPoint, takes an mgrs string, returns an array of [lon,lat]
  List<double> point = [-115.08209766323476, 36.236123461597515];
  String mgrsString = '11SPA7234911844';
  int accuracy = 5;

  // toPoint
  var calculatedPoint = Mgrs.toPoint(mgrsString);
  print('Mgrs.toPoint($mgrsString) = $calculatedPoint');

  // forward
  var calculatedMgrsString = Mgrs.forward(point, accuracy);
  print('Mgrs.forward($point, $accuracy) = $calculatedMgrsString');
4
likes
30
pub points
83%
popularity

Publisher

unverified uploader

Utility for converting between WGS84 lat/lng and MGRS coordinates (Dart version of proj4js/mgrs).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

unicode

More

Packages that depend on mgrs_dart