views:

41

answers:

3

Given only the set of coordinates, is there a way to find the scale factor being used? It will then be used to compute the distances between the coordinates.

Let's consider this:

On a map scale: (This is the only given)

  • pointA(33.511615, -86.778809)
  • pointB(34.398558, -87.669116)

On a real world scale:

  • Distance between the 2 points = unknown

We can solve for the distance between the 2 points. What conversion factor can we use in order to convert the distance into the actual or real world scale? How do we get the conversion factor?

The coordinates given are based on actual points plotted in a smaller scale model.The format may look familiar to you. Could it be that the units by default are miles? I have no idea on how they came up with the coordinates, any thoughts?

I'm not sure what underlying concepts are involved (Geocoding or Geolocation?) and if I made sense when I try to point things out. Please help.

A: 

I'm pretty sure you would need more information to scale the distance correctly. You would really need to know the model scale.

Casey
+1  A: 

Those look like latitude and longitude coordinates (e.g. 33.511615 degrees North latitude, 86.778809 West longitude for the first one) which place them in Alabama.

Are you sure those are some sort of map-specific coordinates and not Lat/Lon?

Edit: if they are Lat/Lon, check out this site which has a great-circle distance calculator and the formulae you'd need to do it yourself. This site allows decimal degrees rather than minutes/seconds so that may be more useful.

Dusty
Yes, it's Lat/Lon.
adrian
A: 

This is sort of a complex problem which requires a bit more information and some consideration of what you are hoping to accomplish with the solution.

I am going to assume that the coordinates you gave above are from the WGS 84 datum, which is the most common method used by modern gps systems today.

However, it is very important that you also know which map projection these coordinates will be plotted on. Basically, since the earth is round (and actually not perfectly round, it is slightly ellipsoid due to the rotation of the earth), when we project this onto a flat surface, it can be done in many ways. The method used to 'flatten' the Earth and also the scale of the map (how 'zoomed in' is the map) can have a strong impact on how useful a x/y scale can be for measurements on the map image.

What maps are you projecting onto? If I knew more, I think I could be of better assistance.

geeketteSpeaks