<< CL_eph_de405 Models CL_eph_de405LoadT >>

CelestLab >> Models > CL_eph_de405Load

CL_eph_de405Load

Loads a DE405 ephemeris file

Calling Sequence

ephem = CL_eph_de405Load(fname, [, incel])

Description

Parameters

fname:

(string) Name (or path) of ephemeris file (1x1)

incel:

(boolean, optional) %t if the file is looked for in CelestLab database. Default is %f.

ephem:

Scilab structure containing the data (1x1)

Authors

See also

Examples

// Load a DE405 ephemeris file
fname = "1960.dat";
ephem = CL_eph_de405Load(fname, %t);

// Use it!
cjd = CL_dat_convert("cal", "cjd", [1962;1;1]);
[pos, vel, acc] = CL_eph_de405("Mars",cjd, "Earth", ephem=ephem);

Report an issue
<< CL_eph_de405 Models CL_eph_de405LoadT >>