Orbit determination using the Laplace method

Two-body orbit determination from azimuth/elevation readings using the Laplace method
755 download
Aggiornato 27 dic 2013

Visualizza la licenza

laplace_orbit_fit() implements the Laplace method for orbit determination from 3 distinct azimuth/elevation observations of a body. The underlying theory is described in Bate, White and Mueller. Note that the observations must be closely spaced in order to yield good results.

The other functions are used by laplace_orbit_fit(), but they can be used on their own because they provide useful algorithms for coordinate conversions and Julian Date calculations.

laplace_orbit_fit() Inputs:
<lat>: Observer latitude (radians). North latitudes are +ve.
<lon>: Observer longitude (radians). East longitudes are +ve.
<alt>: Observer altitude (meters)
<T> : Row vector with three distinct Julian Dates for the observations
<AZI_ELE>: 2x3 matrix. Row 1 must contain azimuth (radians) and row 2 the elevation (radians) for the 3 observations

laplace_orbit_fit() Output:

<RV>: Position (meters) and velocity (m/s) vector of the body at time T(2) in the Earth Centered Inertial reference frame

Example:

lat = (42+24/60)*pi()/180
lon = -(71+4/60)*pi()/180
T = 2451545+[0 5 10]/1440
AZ_EL = [10 70 130; 5 45 10]*pi()/180
rv = laplace_orbit_fit(lat,lon,0,T,AZ_EL)

Cita come

Shiva Iyer (2025). Orbit determination using the Laplace method (https://it.mathworks.com/matlabcentral/fileexchange/44844-orbit-determination-using-the-laplace-method), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2013a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Gravitation, Cosmology & Astrophysics in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0