MGRS → Decimal Converter
About MGRS Coordinate System
MGRS (Military Grid Reference System) is a global grid reference system based on UTM projections. It divides the Earth into 60 UTM zones and uses grid zone designators and 100km square identifiers for precise location referencing.
MGRS was developed by NATO during the Cold War era as a standardized military grid system for coordinating joint operations across member nations. It has since been adopted by humanitarian organizations, emergency services, and outdoor recreation.
MGRS is used by NATO military forces worldwide for mission planning, targeting, and navigation. It is also widely used in humanitarian mapping, disaster response, search and rescue operations, and outdoor activities such as hiking and geocaching.
MGRS is built on the UTM projection system, dividing the Earth into 60 zones of 6° longitude each, with additional grid zone designators for latitude bands.
MGRS can represent locations with varying precision levels from 10km down to 1 meter, making it suitable for both strategic planning and tactical operations.
MGRS is the standard military grid system for all NATO countries, ensuring interoperability across allied forces and international emergency response teams.
MGRS → Decimal Conversion Guide
// MGRS → Decimal conversion
// Step 1: Parse MGRS string into its components
// Format: <Zone><GZD> <100km Square> <Easting> <Northing>
// Components: UTM zone number, grid zone designator,
// 100km square identifier, easting (m), northing (m)
// Step 2: Convert 100km square to UTM easting/northing
// Each 100km square has a known origin within the UTM zone
// Step 3: Convert UTM coordinates to geographic coordinates
// Using inverse Transverse Mercator projection
// WGS84 ellipsoid (a=6378137m, 1/f=298.257223563)
// Step 4: Verify coordinates are valid
// Check latitude between -90° and +90°
// Check longitude between -180° and +180°Converting MGRS to Decimal Degrees reverses the MGRS encoding process. The MGRS string is first parsed into its components: UTM zone, grid zone designator, 100km square identifier, and numeric easting/northing. The 100km square is then resolved to absolute UTM coordinates, which are finally inverse-projected to geographic coordinates using the Transverse Mercator projection.
- Enter your MGRS coordinate string (one per line, with or without spaces between components)
- The system parses the MGRS string into zone, grid square, easting, and northing components
- MGRS grid square coordinates are translated to absolute UTM easting/northing values
- Review the converted Decimal Degree coordinates in the output field
- MGRS input can include or omit spaces — e.g. 17T PK 30000 78000 or 17TPK3000078000 both work
- Verify converted coordinates by plotting them on a map or cross-referencing with known locations
- MGRS coordinates from different regions may use varying precision levels — our parser handles all standard formats