mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
36 lines
652 B
PHP
36 lines
652 B
PHP
<?php
|
|
/**
|
|
* Port of deep_arg_t struct from sgp4sdp4.h
|
|
*/
|
|
|
|
/* Common arguments between deep-space functions */
|
|
class Predict_DeepArg
|
|
{
|
|
/* Used by dpinit part of Deep() */
|
|
public $eosq;
|
|
public $sinio;
|
|
public $cosio;
|
|
public $betao;
|
|
public $aodp;
|
|
public $theta2;
|
|
public $sing;
|
|
public $cosg;
|
|
public $betao2;
|
|
public $xmdot;
|
|
public $omgdot;
|
|
public $xnodot;
|
|
public $xnodp;
|
|
|
|
/* Used by dpsec and dpper parts of Deep() */
|
|
public $xll;
|
|
public $omgadf;
|
|
public $xnode;
|
|
public $em;
|
|
public $xinc;
|
|
public $xn;
|
|
public $t;
|
|
|
|
/* Used by thetg and Deep() */
|
|
public $ds50;
|
|
}
|