Can now get LatLng, MGRS and UTM location data

This commit is contained in:
PeekabooSteam
2023-10-08 16:44:55 +01:00
parent 3794207d97
commit bedd21522a
11 changed files with 406 additions and 63 deletions

View File

@@ -202,4 +202,10 @@ export enum DataIndexes {
isLeader,
operateAs,
endOfData = 255
};
};
export const MGRS_PRECISION_10KM = 2;
export const MGRS_PRECISION_1KM = 3;
export const MGRS_PRECISION_100M = 4;
export const MGRS_PRECISION_10M = 5;
export const MGRS_PRECISION_1M = 6;