mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-08 18:13:57 +02:00
Add animated plot for satellite positions
This commit is contained in:
parent
d145337d6c
commit
f8804533cc
3 changed files with 67 additions and 1 deletions
19
utils/plot-satellites.gnuplot
Normal file
19
utils/plot-satellites.gnuplot
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue