From aeb153cdd6cb37dc1e9d61b22a92430a756ddeb5 Mon Sep 17 00:00:00 2001 From: rodri Date: Sun, 12 May 2024 20:34:03 +0000 Subject: began work on a solar system planetarium. --- tools/horizonget | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 tools/horizonget (limited to 'tools/horizonget') diff --git a/tools/horizonget b/tools/horizonget new file mode 100755 index 0000000..8aa9308 --- /dev/null +++ b/tools/horizonget @@ -0,0 +1,31 @@ +#!/bin/rc +rfork ne +cwd=`{basename -d $0} +center='@sun' +target=() +t0=`{date -f 'YYYY-MM-DD' `{echo `{date -n} - 86400 | bc}} +t1=`{date -f 'YYYY-MM-DD'} +step='1 d' +flagfmt='' +args='target [t0 t1]' + +fn usage { + aux/usage + exit usage +} + +if(! ifs=() eval `{aux/getflags $*}) + usage + +switch($#*){ +case 1 + target=$1 +case 3 + target=$1 + t0=$2 + t1=$3 +case * + usage +} + +$cwd^/horizon.api.get $center $target $t0 $t1 $step | $cwd^/horizon.getdata.awk | tr A-Z a-z -- cgit v1.2.3