askvity

How do you plot UTM coordinates on a map?

Published in Mapping 3 mins read

Plotting UTM (Universal Transverse Mercator) coordinates on a map involves using the Easting and Northing values to locate a specific point within a UTM zone. The process essentially involves treating the coordinates as distances within a grid system.

Here's a breakdown of how to do it:

  1. Understand UTM Coordinates: UTM coordinates consist of two primary values:

    • Easting: Represents the distance east from the central meridian of the UTM zone, typically expressed in meters.
    • Northing: Represents the distance north from the equator, also typically expressed in meters.

    Each UTM coordinate is also associated with a UTM zone.

  2. Identify the UTM Zone on the Map: Make sure your map is properly referenced to a specific UTM zone. This information is crucial for accurate plotting. Maps will often display UTM grid lines for easy reference.

  3. Locate the Grid Square: Using the whole number parts of the Easting and Northing, find the corresponding grid square on the map. UTM grid lines are typically labeled with these whole number values, making locating the correct square straightforward.

  4. Determine Position within the Grid Square: The decimal portion of the Easting and Northing values indicates the position within the grid square.

    • Easting (X-coordinate): Think of the Easting decimal as a fraction of the grid square's width. Multiply this decimal value by the size of the grid square (e.g., if the grid square is 1000 meters wide, multiply the Easting decimal by 1000). This is the distance you move right from the left side of the grid square.

    • Northing (Y-coordinate): Similarly, the Northing decimal represents a fraction of the grid square's height. Multiply this decimal by the size of the grid square. This is the distance you move up from the bottom of the grid square.

  5. Plot the Point: Measure the calculated distances from the lower-left corner of the grid square. The intersection of these two distances marks the location of your point. You are effectively counting over (East) and up (North) based on the coordinate values.

Example:

Let's say you have a UTM coordinate: 17T 450123mE 5412345mN

  • 17T refers to UTM zone
  • Easting: 450123 meters
  • Northing: 5412345 meters

Assuming the map has 1000 meter grid lines:

  1. Locate UTM zone 17T on the map.
  2. Find the grid square where the Easting is 450000 and Northing is 5412000.
  3. Calculate the relative distance within the square:
  • Easting: (450123 - 450000) = 123 meters East from the left edge of the grid square.
  • Northing: (5412345 - 5412000) = 345 meters North from the bottom edge of the grid square.
  1. Measure 123 meters East and 345 meters North from the lower-left corner of the grid square to plot the point.

Important Considerations:

  • Datum: Ensure that the map and the UTM coordinates use the same datum (e.g., WGS84, NAD83). Coordinate values will be different if datums are different.

  • Scale: Use a map with an appropriate scale for the level of accuracy required. A larger scale map (e.g., 1:24,000) will allow for more precise plotting than a smaller scale map (e.g., 1:100,000).

By carefully following these steps, you can accurately plot UTM coordinates on a map.

Related Articles