identifier = 'U_loop.csv' ;
ShotNo = '42960'
# Create a path to the data
DAS='Diagnostics/BasicDiagnostics/Results/'
baseURL='http://golem.fjfi.cvut.cz/shots/'
DataURL= baseURL.ShotNo.'/'.DAS.identifier
set datafile separator ',';
set title "Uloop for #".ShotNo;
! wget -q @DataURL ;# Write data from GOLEM erver to a local file
# Plot the graph from a local file
set xrange [0:20];set xlabel 'Time [s]';set ylabel 'U_l [V]'
set terminal jpeg; plot identifier w l t 'Uloop'
