Northing
Westing
Depth
66 58.7022 -53 42.2196 0.84
66 58.7005 -53 42.2187 0.84
66 58.6997 -53 42.2187 0.86
66 58.6991 -53 42.2183 1.00
66 58.6985 -53 42.2180 1.09
66 58.6979 -53 42.2177 1.47
66 58.6973 -53 42.2174
1.57
It is in DDMM.MMMM format
You are 66 degrees North and 53 degrees West which is in the lower left hand corner of Greenland.

Take the minutes and decimal minutes and divide by 60; add to the degree value taking note of the hemisphere or sign.
----- Original Message -----From: K.TrabjergSent: Tuesday, August 14, 2012 2:30 PMSubject: [MI-L] Data format/ Brazil instead of GreenlandHello
I am trying to plot some data I have collected.
the data is collected in the Datum WGS84 zone 22 Northern hemisphere.
When I Try to transfer my points or grid to Googleearth I end up in Brazil instead of Greenland.
the data i am creating points from looks like this:
Northing Westing Depht
6658.7022,5342.2196,0.84
6658.7005,5342.2187,0.84
6658.6997,5342.2187,0.86
6658.6991,5342.2183,1.00
6658.6985,5342.2180,1.09
6658.6979,5342.2177,1.47
6658.6973,5342.2174,1.57
I am pretty sure that I used the right projection when i plottet the points and if you use the coordinates I imported into mapinfo on the greenlandic map-service site nunagis.gl i also end up the right place in Greenland
Also the coordinates look a little odd when they are imported into a mapinfo table. it seems like mapinfo adds a punctuation mark as a delimitation for thousands and Comma for the decimals i have added a picture of the imported data.
So it actually ends up with a punctuation mark in a place where i didn't put it and also changes the punctuation mark i added to a comma
hope somebody can help
--
You received this message because you are subscribed to the
Google Groups "MapInfo-L" group.To post a message to this group, send
email to mapi...@googlegroups.com
To unsubscribe from this group, go to:
http://groups.google.com/group/mapinfo-l/subscribe?hl=en
For more options, information and links to MapInfo resources (searching
archives, feature requests, to visit our Wiki, visit the Welcome page at
http://groups.google.com/group/mapinfo-l?hl=en
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2012.0.2197 / Virus Database: 2437/5200 - Release Date: 08/14/12
Hi,
I'd check your projection first. While a UTM North 22 is appropriate for Greenland, your Northing coordinates are far too small. They should reflect a distance from the Equator and therefore be quite large numbers. Are you sure the projection is not something based on UTM-N22 but with a different false northing?
Regards,
Waren Vick
Europa Technologies Ltd.
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2012.0.2197 / Virus Database: 2437/5201 - Release Date: 08/14/12
Well if it's lat/lon (WGS-84) I don't know where Zone 22 comes into play! Coordinates would normally be expressed in metres in a UTM-based system. If you can't find a tool to make points from this format, I'd suggest using mid$() and other string functions to extract the coordinates and update them into fresh lat/long fields which are of type float.
e.g.
update MyTable set lon = val(left$(MyNorthing, 3)) + val(mid$(MyNorthing, 4, 999)) / 60.0
and ditto for lat.