def latitude(point): return Angle.from_radians( math.atan2(point[2], math.sqrt(point[0] * point[0] + point[1] * point[1])) )