<div dir="ltr"><div><div><div>Hi Ncl users,<br></div>This is how my code look like. I would like to extract data corresponding to station name and plot spatially only over  North Dakota region. Could some one help me to accomplish this by extracting the data for different variables. I have attached the input csv file with this mail. I have many csv files like this. I just wanna loop in such a way all data can be processed at once.<br></div>Thanks,<br></div>Adv<br><div><div><div><div><br>begin<br>  flnm = &quot;479615.csv&quot;<br> strs = asciiread(flnm,-1,&quot;string&quot;)<br>;print(strs)<br>split_lines = str_split_csv(strs,&quot;,&quot;,2)<br>  nlines  = dimsizes(split_lines(:,0))<br>  nfields = dimsizes(split_lines(0,:))<br> header = split_lines(0,:)<br>do n=0,nlines-1<br>      tf = isStrSubset(strs(n), &quot;CROSBY ND US&quot;)<br>      if (tf) then<br>      field=(strs(n))<br>    do nf=0,nfields-1<br>      print(header(nf) + &quot; : &quot; + str_join(split_lines(n,nf),&quot;, &quot;))<br>    end do<br>      end if<br>end do<br>return<br><br></div></div></div></div></div>