[][src]Function map_3d::aer2eci

pub fn aer2eci(
    gst: f64,
    az: f64,
    el: f64,
    slant_range: f64,
    lat0: f64,
    lon0: f64,
    alt0: f64
) -> (f64, f64, f64)

Returns the tuple (x,y,z) of coordinates in the ECI system

Inputs:

  • az = azimuth angle [rad]
  • el = elevation angle [rad]
  • slant_range = slant range [m]
  • lat0 = reference latitude [rad]
  • lon0 = reference longitude [rad]
  • alt0 = reference altitude [m]

Outputs:

  • x = x ECI coordinate [m]
  • y = y ECI coordinate [m]
  • z = z ECI coordinate [m]