Add animated plot for satellite positions

This commit is contained in:
Tim Schubert 2020-08-17 11:52:53 +02:00
parent d145337d6c
commit f8804533cc
3 changed files with 67 additions and 1 deletions

View file

@ -0,0 +1,19 @@
set datafile separator comma
set key autotitle columnheader
set terminal gif animate
set output 'output.gif'
unset xtics
unset ytics
unset ztics
unset border
set hidden3d
unset key
set view equal xyz
n=600
do for [j=0:100] {
set title 'time '.j
splot 'somefile' using 3:4:5:2 every ::(j*n)::((j+1)*n)
}