Ensure that x, y and z values are specified in Cartesian coordinate system. The formula used is derived with the assumption that x, y and z values are defined in Cartesian coordinate system.
Assign the values of the coordinates to x, y and z. Assume the value 6371 km to the variable R, which is the approximate radius of earth. This value is the scientifically derived value for radius of the earth.
Calculate latitude and longitude using the formula: latitude = asin (z/R) and longitude = atan2 (y,x). In this formula, we have the values of x, y, z and R from step 2. Asin is arc sin, which is a mathematical function, and atan2 is a variation of the arc tangent function. The symbol * stands for multiplication. The above two formulas are derived from the following formulas: x = R * cos (latitude) * cos (longitude); y = R * cos (latitude) * sin (longitude); z = R * sin (latitude). In this formula, sin and cos are mathematical functions. Asin and atan value can be calculated using a trigonometry calculator. The value of atan2 can be calculated using the formula a atan2 (y, x) = 2 atan (y/√(x²+y²)-x). Here √ indicates square root, here square root of (x²+y²).