score:6
WGS84 isn't a "format" at such, it's a "projection". Sometimes it's called a "Datum". Sometimes even a "coordinate system". All of those terms are pretty much correct.
As it turns out, the world isn't flat. What's more, it's not even round, but instead some weird elliptical-like shape.
Maps, on the other hand, are flat (unless you include those weird creases they get when people try and fold them the wrong way).
To confuse things even further, humans came up with a system of lines called "Latitude" and "Longitude". Lines of Latitude run around the globe, with a fixed(-ish) distance between them. As a result, they are actually parallel - and in fact some very boring people often call them "Parallels".
Lines of Longitude run up and down the global, and all start and end at the poles. As a result, the distance between them isn't constant, and they aren't parallel - although if you're only looking at a small frame of reference (eg, most maps) they will appear to be.
So the problem becomes, given a roughly roundish but actually warped elliptical planet, a series of artificial lines that are parallel(-ish) in one direction but not in another (even if they do appear to be), and a human race who prefers things to be flat (except for beer) - how do you actually reference any particular point on the planet?
Or to put it another way, how do you "project" those lines of latitude and longitude onto the almost-but-not-quite round Earth?
As it turns out, there's no end of answers. Most of them have silly names like ED50, ETRS89, GRS 80, NAD83, NAVD88, SRID, UTM, and you guessed it, WGS84!
Some of these systems use Latitude and Longitude, whilst some of them simply - like UTM - give up on the whole concept of the world round and pretend (at least in part) that it's flat - at which point putting straight lines on it becomes much easier.
WGS84 is one of the "world is round-ish" methods, and is by far the most common - if only for the fact that it's what the GPS in your car uses to work out how lost you are. It's also what you'll find used on most recent maps (but more on that below).
Many of the different projection schemes/datums will give very similar results for locations, but unless you're either visiting Santa at the north pole or visiting the Polar Bears at the south pole then they will vary slightly. Whilst most recent maps will use WGS84, many of them will also include details for other coordinate systems, like NAD83.
Now, what was the question? Ohh - that's right - where's the cave at 6413180-2059501?
The simple answer is, I have no idea what those numbers mean. Regardless of the Datum used, coordinates are usually expressed in degrees of latitude and longitude, not as mathematical equations like you have above. Attempting to convert the above into degrees could be done in three ways :
64.13180 degrees North, 20.59501 degrees West (west, due to the negative)
64 degrees, 13.180 minutes North, 20 degrees 59.501 minutes West (west, due to the negative)
64 degrees, 13 minutes, 18.0 seconds North, 20 degrees 59 minutes, 50.1seconds West (west, due to... well.. hopefully you've gotten the idea by now!)
(For those that have forgotten high-school math, there's 60 minutes in a degree. There are also 60 seconds in a minute, but I'm guessing you remembered that one!)
According to Google Maps, those put you here, here, or here - all of which are in Iceland. I do not, however, see any caves.
Upvote:4
Firstly, WGS84 is a considerably different format to regular Lat/Long coordinates.
Indeed, from a question on Stackoverflow, looking at the code to convert (if you were a programmer), it's quite a complex operation:
$lon = ($lon / 20037508.34) * 180;
$lat = ($lat / 20037508.34) * 180;
$lat = 180/M_PI * (2 * atan(exp($lat * M_PI / 180)) - M_PI / 2);
simply adding a decimal place isn't going to do it.
Running -2059501 through the LON calcuation, we get:
-18.5008
which certainly lines up with Iceland. However, I cannot manage to get any calculator here to do the second calculation - if someone else can help out?