Commit 37ebe50b511f65c3075cfbd788f7cd4ae4e061c8

Authored by Quentin Brzustowski
1 parent e395ecf8

added lat and lon HEE for mars and jupiter

PARAM_DEF/jup_lat_hee.xml 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +<?xml version="1.0"?>
  2 +<param xml:id="jup_lat_hee">
  3 + <get>
  4 + <vi name="jupiter:orb:all">
  5 + <baseParam name="HEE"/>
  6 + </vi>
  7 + </get>
  8 + <process description="LAT HEE">atan($jupiter_orb_all_HEE[2]/sqrt(pow($jupiter_orb_all_HEE[1],2) + pow($jupiter_orb_all_HEE[0],2)))*RAD2DEG</process>
  9 + <output/>
  10 +</param>
... ...
PARAM_DEF/jup_lon_hee.xml 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +<?xml version="1.0"?>
  2 +<param xml:id="jup_lon_hee">
  3 + <get>
  4 + <vi name="jupiter:orb:all">
  5 + <baseParam name="HEE"/>
  6 + </vi>
  7 + </get>
  8 + <process description="LON HEE">atan2($jupiter_orb_all_HEE[1],$jupiter_orb_all_HEE[0])*RAD2DEG</process>
  9 + <output/>
  10 +</param>
... ...
PARAM_DEF/mars_lat_hee.xml 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +<?xml version="1.0"?>
  2 +<param xml:id="mars_lat_hee">
  3 + <get>
  4 + <vi name="mars:orb:all">
  5 + <baseParam name="HEE"/>
  6 + </vi>
  7 + </get>
  8 + <process description="LAT HEE">atan($mars_orb_all_HEE[2]/sqrt(pow($mars_orb_all_HEE[1],2) + pow($mars_orb_all_HEE[0],2)))*RAD2DEG</process>
  9 + <output/>
  10 +</param>
... ...
PARAM_DEF/mars_lon_hee.xml 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +<?xml version="1.0"?>
  2 +<param xml:id="mars_lon_hee">
  3 + <get>
  4 + <vi name="mars:orb:all">
  5 + <baseParam name="HEE"/>
  6 + </vi>
  7 + </get>
  8 + <process description="LON HEE">atan2($mars_orb_all_HEE[1],$mars_orb_all_HEE[0])*RAD2DEG</process>
  9 + <output/>
  10 +</param>
... ...
PARAM_DEF/so_lat_hee.xml
... ... @@ -5,6 +5,6 @@
5 5 <baseParam name="HEE"/>
6 6 </vi>
7 7 </get>
8   - <process description="LAT HAE">atan($so_orb_all_HEE[2]/sqrt(pow($so_orb_all_HEE[1],2) + pow($so_orb_all_HEE[0],2)))*RAD2DEG</process>
  8 + <process description="LAT HEE">atan($so_orb_all_HEE[2]/sqrt(pow($so_orb_all_HEE[1],2) + pow($so_orb_all_HEE[0],2)))*RAD2DEG</process>
9 9 <output/>
10 10 </param>
... ...