GPS coordinates are displayed in the normal decimal degrees format:
DD.DDDDDD DDD.DDDDDD
Generated
from enum value: DEC = 0;
DMS
DMS:1
GPS coordinates are displayed in the degrees minutes seconds format:
DD°MM'SS"C DDD°MM'SS"C, where C is the compass point representing the locations quadrant
Generated
from enum value: DMS = 1;
MGRS
MGRS:3
Military Grid Reference System format:
ZZB CD EEEEE NNNNN, where Z is zone, B is band, C is the east 100k square, D is the north 100k square,
E is easting, N is northing
Generated
from enum value: MGRS = 3;
OLC
OLC:4
Open Location Code (aka Plus Codes).
Generated
from enum value: OLC = 4;
OSGR
OSGR:5
Ordnance Survey Grid Reference (the National Grid System of the UK).
Format: AB EEEEE NNNNN, where A is the east 100k square, B is the north 100k square,
E is the easting, N is the northing
Generated
from enum value: OSGR = 5;
UTM
UTM:2
Universal Transverse Mercator format:
ZZB EEEEEE NNNNNNN, where Z is zone, B is band, E is easting, N is northing
How the GPS coordinates are displayed on the OLED screen.
Generated
from enum meshtastic.Config.DisplayConfig.GpsCoordinateFormat