Files
astronomy/generate/jupiter_moons/horizons/jmc
Don Cross 87f5dd1c95 Jupiter Moons: greatly increased JPL Horizons test data coverage.
I want to make sure I have thorough coverage of exercising
the Jupiter moon calculations before I start tinkering
with truncating the L1.2 models; the eventual goal is
to decrease the code size, especially later for JavaScript.
Only 101 test cases seemed far too small. Now there are 5001.

Increased the time range to cover the years 1931..2068.
Decreased the time step from 100 days to 10 days.
Eliminated all but the geometric data, because I'm testing
code without any light-time or aberration correction.

Updated the README.txt instructions for generating the
JPL Horizons test data.
2021-04-11 11:33:17 -04:00

9 lines
140 B
Bash
Executable File

#!/bin/bash
for moon in 0 1 2 3; do
fn=jm${moon}.txt
echo $fn
./jmcompare.py stellarium.txt ${fn} || exit 1
done
echo ""
exit 0