1

I found answer for converting UTM to LatLong here

(lat,lng) = transform(easting, northing, zone)

Most answers I search does not include calculations to compute altitude from down. But, I want to convert down measurements to altitude, how do I do something like:

(lat, lng, alt) = transform(easting,        northing,       down,           zone)
(?  , ?  , ?  ) = transform(5735847.026821, 619997.428877,  -116.869707,    "30U")
Saravanabalagi Ramachandran
  • 8,551
  • 11
  • 53
  • 102
  • 1
    UTM is just a horizontal representation, that doesn't care about altitude. You could extend altitude to your coordinates using [srtm.py](https://github.com/tkrajina/srtm.py) – Maurice Meyer Aug 09 '19 at 14:05
  • That should be handy when we don't have any altitude measurements, but the measurements I have are recorded in a car and I want to visualize the trajectory. I guess there will be loss of information doing that as that would not retrieve the actual y of the car. – Saravanabalagi Ramachandran Aug 10 '19 at 12:00

0 Answers0