X-Git-Url: http://git.onelab.eu/?p=plewww.git;a=blobdiff_plain;f=googlemap%2Fdegree2decimal.py;h=071879b6e6d82039145041ecae65eb9b88239b10;hp=6cc22111a05aa9e29b589018087067ac9cd7281f;hb=8f28ec5073c521e5976d9bd86a27a45ddf1ca2f3;hpb=e7aa0388931b643066aed74a4a99955be58f2007 diff --git a/googlemap/degree2decimal.py b/googlemap/degree2decimal.py index 6cc2211..071879b 100755 --- a/googlemap/degree2decimal.py +++ b/googlemap/degree2decimal.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python3 # transforms a degree notation like # 43:36:56.32 (43 degrees 36 minutes 56.32 seconds) # into a decimal notation @@ -14,14 +14,14 @@ second=1./3600 def translate (coord): r=matcher.match(coord) if not r: - print 'failed to parse',coord,'pattern=',pattern + print('failed to parse',coord,'pattern=',pattern) else: - (deg,min,sec)=map(float,r.groups()) + (deg,min,sec)=list(map(float,r.groups())) # print 'deg',deg,'min',min,'sec',sec if (deg>0): - print coord,'->',deg+min*minute+sec*second + print(coord,'->',deg+min*minute+sec*second) else: - print coord,'->',deg-min*minute-sec*second + print(coord,'->',deg-min*minute-sec*second) def main():