GPS coordinates are displayed in the normal decimal degrees format: DD.DDDDDD DDD.DDDDDD
from enum value: DEC = 0;
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
from enum value: DMS = 1;
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
from enum value: MGRS = 3;
Open Location Code (aka Plus Codes).
from enum value: OLC = 4;
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
from enum value: OSGR = 5;
Universal Transverse Mercator format: ZZB EEEEEE NNNNNNN, where Z is zone, B is band, E is easting, N is northing
from enum value: UTM = 2;
Generated using TypeDoc
How the GPS coordinates are displayed on the OLED screen.
Generated
from enum meshtastic.Config.DisplayConfig.GpsCoordinateFormat