I want to calculate the relative bearing between two geo-coordinate points. I've gone ahead and converted the coordinates to UTM, but need assistance on figuring out the actual bearing. I'm aware that UTM is only good enough for same-zone calculations, which is fine as the computation will be done across very small distances.
Say point1 is my location 44.4N,-97.7W and point2 is the location I'd like to get the relative bearing to: 44.4N, -103.3W
Since point 2 is directly to the left of point 1, I'd interpret that as 270 degrees (North being 0 or 360 degrees).
I found this formula: arctan((y1-y2)/(x1-x2)) but it's result don't make sense to me when I plot the points and measure the angles.