mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-05 22:17:48 -05:00
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.
9 lines
140 B
Bash
Executable File
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
|