Finding yourself on a topographic map #3. We will learn about converting from Latitude and Longitude to UTM coordinates, map scales, volume calculations and profiles.
Often map coordinates are provided in latitude and longitude but need to be plotted on a UTM grid. Conversion from latitude and longitude to UTM is not simple. The conversion accounts for the spherical Earth, the departure of the Earth's shape from a perfect sphere, and variation in sea-level, and the Earth's geoid, relative to the center of the Earth. Fortunately there are tools available for doing this conversion. One of the most reliable tools was developed by staff at the US Geological Survey.
This GUI converts latitude and longitude to UTM coordinates and reports the zone, using the Proj.4 Cartographic Projections Library originally developed by USGS Staff scientists and implemented in javascript. Both the latitude and longitude and the UTM coordinates use a WGS84 map datum, which is a map datum widely used in electronic maps, like Leaflet.
Type in different values of latitude and longitude to calculate UTM coordinates. Note that the southern hemisphere has negative latitude and the western hemisphere has negative longitude. (click in the text boxes to change coordinates).
The latitude and longitude of Mt Cleveland volcano are given by the Smithsonian volcano program as 52.825$^{\circ}$ N and 169.944$^{\circ}$ W.
Convert these to UTM and you should get: 571154 E, 5853326 N, UTM zone 2. Note that Mt. Cleveland volcano is in the western hemisphere, so by convention its longitude is negative.
Compare these values with the coordinates of Mount Cleveland volcano on your hand-drawn base map.
One advantage of UTM coordinates is that it is easier to calculate distances in UTM (a Cartesian coordinate system) than using latitude and longitude. This electronic map shows two points (solid red circles) connected by a line across the summit of Mt. Cleveland volcano. You can click on the map and the mouse coordinates will pop up in units of pixels. Zoom in and out! Re-load the page if you get lost.
The coordinates of the endpoints of the line are plotted in latitude and longitude on this map. The coordinates are:(52.852982, -169.906039) and (52.797288, -169.978329). Click anywhere on the map and the screen coordinates (in pixels) will appear in a popup.
Recall that the distance formula is: $$\textrm{Distance} = \sqrt{(x_1 - x_2)^2 + (y_1 - y_2)^2}$$ where the coordinate of one point is $x_1, y_1$ and the coordinate of the second point is $x_2, y_2$. These coordinates might be expressed as UTM coordinates and represent locations on a map.
$x_1$ might be west or east of $x_2$; $y_1$ might be north or south of $y_2$. The assignment of the two coordinates to ($x_1, y_1$) and ($x_2, y_2$) points does not matter because the distance between the points depends on the squares of the differences in position of the points in the $x$ and $y$ directions. To prove this: $$(x_1 - x_2)^2 = (x_2 - x_1)^2$$ $$(y_1 - y_2)^2 = (y_2 - y_1)^2$$ so, $$ \sqrt{(x_1 - x_2)^2 + (y_1 - y_2)^2} = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} $$
The map distance between the two points can be found by converting the coordinates from latitude / longitude to UTM and then using the distance formula to calculate the distance (meters) between the two points. Recall that UTM coordinates are in units of meters, so the distance will be in meters.
Like all maps, this electronic map has a map scale. The map scale changes when you use the mouse to zoom in or out. The length of the line between the solid red dots on the screen changes as the scale changes.
On a paper map, the map scale is dimensionless. A scale of 1:50000 means that one cm on the map equals 50,000 cm (500 m) on the ground. The web browser displays the map using pixels, which like UTM coordinates are a Cartesian coordinate system. For a map displayed in a web browser (or on a computer screen generally) it is convenient to think of the map scale in terms of the ratio of meters to pixels, which has dimensions since a pixel is not equal to a meter. Usually, on a computer screen the number of pixels in the $x$ direction (horizontal) increases from left to right; the number of pixels in the $y$ direction (vertical) increases from top to bottom. The pixel coordinates of your mouse pointer is given in pixel units on the computer screen (when you click they popup). The image, no matter what the zoom level, is 640 x 640 pixels and pixel (0,0) is in the upper left corner of the map. Just as with using UTM coordinates, the distance between the solid red circles can be calculated in units of pixels using the distance formula.
Because you know the UTM coordinates and the pixel coordinates of the two red solid circles, you can calculate the map scale (meters per pixel). This is a proportion: $$\textrm{Map scale} = \frac{\textrm{Distance between points (meter)}}{\textrm{Distance between points (pixel)}}$$
To answer these questions you should develop a spreadsheet using Excel, or for the adventurous you can develop a python script to answer the questions. You will also use your basemap from exercise #2.
Turn in your answers to the questions using a word document. Scan the base map showing the topographic profile and include this in the word document. Or, take a picture of the base map and insert in your word document. Cut and paste the sections of your spreadsheet into the word document, or paste in teh python code you wrote to do the calculations.