Hi,
having a latitude like : 41,2323032
How can i format in DMS format 41° 23' 23,24''
Regards
Gianmaria
This is a discussion on Format conversion within the MapPoint Desktop Discussion forums, part of the Map Forums category; Hi, having a latitude like : 41,2323032 How can i format in DMS format 41° 23' 23,24'' Regards Gianmaria...
Hi,
having a latitude like : 41,2323032
How can i format in DMS format 41° 23' 23,24''
Regards
Gianmaria
Hi,
Code:double lat = 41.2323032; int degree, minute; double seconds; degree = (int)lat; lat -= degree; lat *= 60; minute = (int)lat; lat -= minute; lat *= 60; seconds = lat; string pos = degree.ToString() + '°' + minute.ToString() + "'" + seconds.ToString("F2") + '"';
rgds, Wilfried Mestdagh
www.mestdagh.biz
www.comfortsoftware.be
www.expertsoftware.be
MapPoint coding demo
MapPoint 2011 available, buy now
There are currently 1 users browsing this thread. (0 members and 1 guests)