Catalog/maps-utm

Maps

UTM & MGRS grid reference converter API

Convert a geographic lat/lon to Universal Transverse Mercator (zone, latitude band, hemisphere, easting, northing) and to an MGRS grid reference, computing the WGS-84 transverse-Mercator projection series an LLM cannot evaluate. Answers 'what is the UTM coordinate for this lat/lon', 'convert these coordinates to MGRS', 'which UTM zone is Paris in', 'easting and northing for 48.8584, 2.2945'.

Price$0.01per request
MethodPOST
Route/v1/maps/utm
StatusLive
MIME typeapplication/json
Rate limit60/minute
CacheNo cache
mapsutmmgrsprojectiongridcoordinateswgs84transverse-mercator
API URLhttps://x402.hexl.dev/v1/maps/utm
Integration docs
Example request
{
  "latitude": 48.8584,
  "longitude": 2.2945
}
Example response
{
  "latitude": 48.8584,
  "longitude": 2.2945,
  "utm": {
    "zone": 31,
    "band": "U",
    "hemisphere": "N",
    "easting": 448252,
    "northing": 5411954.91,
    "zoneString": "31U"
  },
  "mgrs": "31UDQ4825211954",
  "convergenceMeridian": 3
}
Input schema
{
  "type": "object",
  "required": [
    "latitude",
    "longitude"
  ],
  "properties": {
    "latitude": {
      "type": "number",
      "examples": [
        48.8584
      ]
    },
    "longitude": {
      "type": "number",
      "examples": [
        2.2945
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}