Represents an MGRS (Military Grid Reference System) point.

  • 4Q ......................GZD only, precision level 6° × 8° (in most cases)
  • 4Q FJ ...................GZD and 100 km Grid Square ID, precision level 100 km
  • 4Q FJ 1 6 ...............precision level 10 km
  • 4Q FJ 12 67 .............precision level 1 km
  • 4Q FJ 123 678 ...........precision level 100 m
  • 4Q FJ 1234 6789 .........precision level 10 m
  • 4Q FJ 12345 67890 .......precision level 1 m
interface l_MGRS {
    Easting: number;
    MGRSDigraph: string;
    Northing: number;
    UTMZone: string;
}

Properties

Easting: number

Easting value of the MGRS point.

MGRSDigraph: string

MGRS digraph (grid square identifier).

Northing: number

Northing value of the MGRS point.

UTMZone: string

UTM zone of the MGRS point.