0 purchases
dart vn2000
VN2000 converter for dart
Features #
VN2000 to WGS84
WGS84 to VN2000
Getting started #
dependencies:
proj4dart: {version}
copied to clipboard
Usage #
void main() {
final vn2000ToWGS84 = DartVN2000Converter.vn2000ToWGS84(
dx: 600997,
dy: 1189964,
province: VN2000Province.VN2000_TP_HCM,
);
final wgs84ToVN2000 = DartVN2000Converter.wgs84ToVN2000(
longitude: 106.67523783,
latitude: 10.75909134,
province: VN2000Province.VN2000_TP_HCM,
);
print(vn2000ToWGS84);
print(wgs84ToVN2000);
}
copied to clipboard
Additional information #
Base on JS version (thank @namlunkaka): https://github.com/namlunkaka/vn2000-converter
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.