mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-24 11:11:10 +00:00
move predict to src folder
This commit is contained in:
35
src/predict/Predict/DeepArg.php
Normal file
35
src/predict/Predict/DeepArg.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user