Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert longitude/latitude to x/y on iPhone

I am showing an image in an UIImageView and i'd like to convert coordinates to x/y values so i can show cities on this image. This is what i tried based on my research:

CGFloat height = mapView.frame.size.height;
CGFloat width = mapView.frame.size.width;


 int x =  (int) ((width/360.0) * (180 + 8.242493)); // Mainz lon
 int y =  (int) ((height/180.0) * (90 - 49.993615)); // Mainz lat


NSLog(@"x: %i y: %i", x, y);

PinView *pinView = [[PinView alloc]initPinViewWithPoint:x andY:y];

[self.view addSubview:pinView];

which gives me 167 as x and y=104 but this example should have the values x=73 and y=294.

mapView is my UIImageView, just for clarification.

So my second try was to use the MKMapKit:

CLLocationCoordinate2D coord = CLLocationCoordinate2DMake(49.993615, 8.242493);
MKMapPoint point = MKMapPointForCoordinate(coord);
NSLog(@"x is %f and y is %f",point.x,point.y);

But this gives me some really strange values: x = 140363776.241755 and y is 91045888.536491.

So do you have an idea what i have to do to get this working ?

Thanks so much!

like image 703
dehlen Avatar asked Jan 06 '13 18:01

dehlen


1 Answers

To make this work you need to know 4 pieces of data:

  1. Latitude and longitude of the top left corner of the image.
  2. Latitude and longitude of the bottom right corner of the image.
  3. Width and height of the image (in points).
  4. Latitude and longitude of the data point.

With that info you can do the following:

// These should roughly box Germany - use the actual values appropriate to your image
double minLat = 54.8;
double minLong = 5.5;
double maxLat = 47.2;
double maxLong = 15.1;

// Map image size (in points)
CGSize mapSize = mapView.frame.size;

// Determine the map scale (points per degree)
double xScale = mapSize.width / (maxLong - minLong);
double yScale = mapSize.height / (maxLat - minLat);

// Latitude and longitude of city
double spotLat = 49.993615;
double spotLong = 8.242493;

// position of map image for point
CGFloat x = (spotLong - minLong) * xScale;
CGFloat y = (spotLat - minLat) * yScale;

If x or y are negative or greater than the image's size, then the point is off of the map.

This simple solution assumes the map image uses the basic cylindrical projection (Mercator) where all lines of latitude and longitude are straight lines.

Edit:

To convert an image point back to a coordinate, just reverse the calculation:

double pointLong = pointX / xScale + minLong;
double pointLat = pointY / yScale + minLat;

where pointX and pointY represent a point on the image in screen points. (0, 0) is the top left corner of the image.

like image 83
rmaddy Avatar answered Sep 28 '22 00:09

rmaddy