|
From: pau <all...@gm...> - 2006-08-24 20:29:53
|
Hi!
thanks a lot for the quick answer!
Seemingly something went wrong. I got this kind of message:
gnuplot> plot "Splotch4_0010_part.asc.gif" using 3:4 with dots
^
line 0: no data point found in specified file
And what I did is
elachistos| for f in *.asc ; do
/home/pau/temporal/FRED/PROVA/kkk.sh "$f" `basename $f .dat`.gif ;
done
where kkk.sh looks like
#!/usr/bin/env zsh
gnuplot <<EOF
set term gif
set output "$2"
plot "$2" using 3:4 with dots
unset output
exit
EOF
The result is a lot of empty gifs.
My data names are like "Splotch4_0012_part.asc.gz", and they span from
Splotch4_0000_part.asc.gz
to Splotch4_0500_part.asc.gz.
Of course I gunzipped them before using your script... Is there a faster way
of coping with gzipped data?
Any hint?
in any case, thanks a lot!
BTW do you know how to combine the for blabla and put it into the kkk.sh
script?
--
View this message in context: http://www.nabble.com/automated-plotting-tf2160717.html#a5972128
Sent from the Gnuplot - User forum at Nabble.com.
|