How do I calculate the distance between two points (vertically) specified by latitude and longitude and Altitude?

506 Views Asked by At

I have checked other questions but nobody is talking about how to calculate the height of an object using GPS,

Consider I have two data points vertically (not horizontally which calculates the distance), I have (lat1,lon1,alt1) and (lat2,lon2,alt2). now, How can I calculate the height of the object? Is there any formula using which I can get the height? consider a cube and data points are of the front top left and the front bottom left, can I get the height of this cube using these two data points using any formula?

enter image description here

3

There are 3 best solutions below

3
On

If I am reading your question right, when you say height this is going to be the vertical. Simply go

alt2 - alt1

(assuming alt2 > alt1) or go

mod(alt1 - alt2)

This should give you the vertical rise irrespective of where the Lat, Long are in space!!!! Hope that solves it!

2
On

The question is not clear.

Is the vertical distance what is required?

Please see the image below.

enter image description here

0
On

The Height is simply Alt2 - Alt1. The Height units will be the same unit type as the input Altitude values. For example if Altitude2 is 10 meters, and Altitude1 is 2 meters, then Height is 8 meters. If your Altitudes are in different unit types you will need to convert them to be the same unit type prior to calculating the Height.

The Altitude values given by a GPS will typically be referenced to Mean Sea Level, and understood to represent the Height "Above Mean Sea Level" or "AMSL". Note: In low lying areas you may see a negative altitude, so be sure to account for that in your code.

The GPS should give an indication whether the Altitude is being expressed in Meters or Feet, and should also typically give the user the option to specify their desired units.

Note: In some disciplines you will see heights expressed in AGL ("Above Ground Level"), or even both AGL and AMSL. For example, a given building roof may be 50ft AGL, and 1050ft AMSL; indicating that the ground the building sits on is at 1000ft AMSL.

Note2: Height and Vertical Distance are the same thing. There is a drawing in the answers which incorrectly shows the Vertical Distance as a sloped line between two points, however that sloped line is actually the "Slope Distance". "Vertical Distance" will always be the difference in height when considered from the center of the Earth. "Horizontal Distance" will be the distance between two locations (i.e. discrete coordinates) at a common elevation. "Slope Distance" will be the distance between those two locations at their respective elevations.