i have 2 latitude obtain on this format:
let lat1 = 37.33756323
let lat2 = 37.33683958
now I need to calculate the distance between this 2 point.
converting this to hours, min and second I'm able to calculate the distance .. which result in around 0.08km considering that for 1 deg of lat = 60 NM
But how can I do it with swift.. is there any way to first convert this lat in hours, min and second? I can't find the right way to "subtract" correctly this 2 angles.
any suggestion?
thanks a lot