i found another topic where i have found this code:
utm15_wgs84 = pp.Proj(init='epsg:3575')
df[['wgs_x', 'wgs_y']] = df.apply(lambda row:utm15_wgs84(row['Lat'],
row['Long'], inverse=True), axis=1).apply(pd.Series)
my df (INPUT):
Lat, Long
415634,-0625511.4
in real those coordinates are : 41 56 34 N and 062 55 11.4 W
I need convert them to decimal degree format
expecting output should be : using calculations:
41+56/60+34/3600 ,-( 62+55/60+11.4/3600 )
Lat, Long
41.9427777777778,-62.9198333333333
Using code above i am receiving
result:
Lat, Long
44.622697, 82.973245
It's wrong ;/
i have tried to change init='epsg:4326'
and init='epsg:3575'
, and still bad results.
Whats will be the best way to convert coordinates like in INPUT to get expected result?