identifier = 'U_loop.csv' ;
ShotNo = '39187'
# 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:0.02];set xlabel 'Time [s]';set ylabel 'U_l [V]'
set terminal jpeg; plot identifier u 1:2 w l t 'Uloop'
