Quantcast
Channel: 懒得折腾
Viewing all articles
Browse latest Browse all 764

Convert Latitude & Longitude format VBA

$
0
0

Convert a latitude 603225 to a decimal based Latitude in VBA.

Int(Left( [LATITUDE], 2)) + (Int(Right(Left( [LATITUDE], 4), 2))/60.0 )+( Int(Right( [LATITUDE], 2))/3600.0)
Int(Left( [LONGITUDE], 2)) + (Int(Right(Left( [LONGITUDE], 4), 2))/60.0 )+( Int(Right( [LONGITUDE], 2))/3600.0)



Viewing all articles
Browse latest Browse all 764

Trending Articles