# See https://stackoverflow.com/questions/56602388/how-do-i-plot-magnetic-field-lines-from-computational-data-with-gnuplot
#     http://gnuplot.sourceforge.net/docs_4.2/node281.html
#	https://stackoverflow.com/questions/52003853/gnuplot-splot-xyz-equal-scale-graph-too-small?rq=1
set view 90,90,1,2
set yrange [18:30]
set zrange [20:32]


filter(x) = (((x>24)&&(x<26)) ? x : NaN)
splot "vector_h_data_snap_file" using (filter($1)):2:3:4:5:6 with vectors  
