Transform x, y [km] to decimal degree in reference to orig_lon and orig_lat
>>> utlLonLat(12.0, 48.0, 0.0, 0.0)
(12.0, 48.0)
>>> lon, lat = utlLonLat(12.0, 48.0, 73.9041, 111.1908)
>>> print("%.4f, %.4f" % (lon, lat))
13.0000, 49.0000
Parameters: |
|
---|---|
Returns: | lon, lat coordinate in degree (absolute) |