i have places location in the database by x ,y and shape How can I convert this location points to latitude and longitude pairs? Is there a tool or a formula?

for example x =220162.636213404 y = 762057.914609313 it should be something like lat = 34.55667500000000000 lng = 31.68173300000000000

Thanks!

link|improve this question

57% accept rate
1  
What is x, y? – KennyTM Feb 14 '10 at 16:38
1  
Where are x and y are measured relative from? i.e. where is x=0, y=0 in your database? – ChrisF Feb 14 '10 at 17:02
i got a sql that insert the data to my db the columns names are pt_x_map and pt_y_map – avnic Feb 14 '10 at 17:06
1  
What are the units of X and Y? Meters? Pixels? Something else? What location corresponds to (x,y) = (0,0)? From the values you've posted, this looks like a rather unusual coordinate system -- we'll need more information in order to help you. – Jim Lewis Feb 14 '10 at 18:10
feedback

3 Answers

There are a lot of different geographic coordinate systems. The most commonly used is WGS84 (EPSG:4236). Google Maps uses it's own spherical mercator projection which is commonly known as Google Mercator, but its latlong values are WGS84 coordinates.

In order to transform your coordinates you have to know the source and destination coordinate system. Once you have figured this out you can use a library like Proj4js to calculate the transformation.

Proj4js also provides an online coordinate calculator, which might help you to figure out which coordinates system the coordinates in your database are using.

If you are looking for a C# framework: SharpMap is great for handling all aspects of geospatial applications.

link|improve this answer
feedback

That depends on the projection model you choose to use.

link|improve this answer
And where in the world your data is. – ChrisF Feb 14 '10 at 16:50
feedback

Asumming x, y are pixel-measured positions, you could adapt this snippet:

> public Class MyMapView extends MapView {

.... /**
* x,y are screen coordinates. The location l is set to the
latitude and longitude that corresponds to this
* point on the screen.
*/
public void setLocation(double x, double y, Location l) {
double latSpan = (getLatitudeSpan() / 1.0E6);
double lngSpan = (getLongitudeSpan() / 1.0E6);
Point center = getMapCenter();
double xPcnt = x / ((double)getWidth());
double yPcnt = y / ((double)getHeight());
double lat0 = (center.getLatitudeE6()/1.0E6 + (latSpan/2.0));
double lng0 = (center.getLongitudeE6()/1.0E6 - (lngSpan/2.0));
double lat = lat0 - (yPcnt * latSpan);
double lng = lng0 + (xPcnt * lngSpan);
l.setLatitude(lat);
l.setLongitude(lng);
} ...

Taken from: http://groups.google.com/group/android-developers/msg/f40fa714555c9617

link|improve this answer
The sample x and y values given are greater than 100 000. If those are pixel coordinates, avnic's got quite a big screen – MarkJ Feb 15 '10 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.