71 lines
1.3 KiB
Gnuplot
71 lines
1.3 KiB
Gnuplot
reset
|
|
|
|
#set terminal x11 size 2000,1500
|
|
#set terminal windows size 2000,1500
|
|
set terminal epslatex size 15cm,18cm
|
|
set output "sideplot.tex"
|
|
|
|
set ticslevel 0
|
|
#unset key
|
|
set xrange [10:73]
|
|
set xtics autofreq
|
|
set xtics offset 1,-0.8
|
|
set format x '%h'
|
|
unset xlabel
|
|
|
|
set yrange [-0.500000:51.700001]
|
|
set ytics autofreq
|
|
set format y '%h'
|
|
unset ylabel
|
|
|
|
set zrange [-0.5:10]
|
|
set ztics autofreq
|
|
set format z '%h'
|
|
unset zlabel
|
|
|
|
set cbtics autofreq
|
|
set format cb '%h'
|
|
unset cblabel
|
|
|
|
set view 90,0
|
|
set ticslevel 0
|
|
set view equal xz
|
|
|
|
set lmargin at screen 0
|
|
set rmargin at screen 1
|
|
set tmargin at screen 0.8
|
|
set bmargin at screen 0
|
|
|
|
#unset lmargin
|
|
#unset rmargin
|
|
#unset tmargin
|
|
#unset bmargin
|
|
|
|
unset border
|
|
unset xtics
|
|
unset ytics
|
|
unset ztics
|
|
|
|
# Building
|
|
load 'building2.gp.inc'
|
|
|
|
unset clip
|
|
|
|
set style line 1 \
|
|
linecolor rgb '#757575' \
|
|
linetype 1 linewidth 3
|
|
|
|
|
|
# to show labels: " x:y:1 with labels " und "offset char 1,1"
|
|
|
|
splot \
|
|
'real_to_global.data' with line linestyle 1 notitle ,\
|
|
'real_to_perFloor.data' with line linestyle 1 notitle ,\
|
|
'real_with_zoffset.csv' using 2:3:4 with point pt 7 ps 2 lc rgb '#474747' notitle ,\
|
|
'perFloor.csv' using 2:3:4 with point pt 7 ps 2 lc rgb '#FCAF3E' notitle ,\
|
|
'global.csv' using 2:3:4 with point pt 7 ps 2 lc rgb '#0D6DCD' notitle ,\
|
|
|
|
|
|
|
|
|