<div dir="ltr">Hi All, I&#39;m trying to write the names of some locations in a map throw the gsn_add_text command, but this isn&#39;t working and I can&#39;t find the error because is not throwing me any one. I only see the map after running my code without any text.  I attached you some parts of my code where I use this command, it would be great if someone can help me to find my mistake.<br><br>Best Regards,<br>Sebastián.<br><br>  srcFileName = &quot;/afs/<a href="http://crc.nd.edu/user/s/sotarola/WRF/Santiago/Sim/1/wrfout_d03_2011-06-01_00:00:00.nc">crc.nd.edu/user/s/sotarola/WRF/Santiago/Sim/1/wrfout_d03_2011-06-01_00:00:00.nc</a>&quot;<div>sfile       = addfile(srcFileName,&quot;r&quot;)</div><div><br><div> lat        = wrf_user_getvar(sfile,&quot;lat&quot;,-1)</div><div> lon        = wrf_user_getvar(sfile,&quot;lon&quot;,-1)</div></div><div><br><div> opt = True</div><div><span style="background-color:rgb(255,0,0)"> loc = wrf_user_ll_to_ij(sfile,-70.71263323,-33.479181,opt)</span></div><div> loc=loc-1</div></div><div><br></div><div><div> do n=0,ntimes-1</div><div>      wks = gsn_open_wks(&quot;png&quot;,&quot;animate&quot;+sprinti(&quot;%02i&quot;,n))    ; animate_00.png, animate_01.png, etc</div><div>      gsn_define_colormap(wks,&quot;gui_default&quot;)</div><div>      print(&quot;Trabajando en el tiempo: &quot; + times(n))</div><div>      res@gsnRightString  = &quot; Velocity(m/s):  &quot;+ times(n)</div><div>      res@gsnLeftString = &quot; &quot;</div><div>      plotB =gsn_csm_vector_map(wks,u(n,:,:),v(n,:,:),res)</div><div>      txres = False</div><div>      <span style="background-color:rgb(255,0,0)">text = gsn_add_text(wks,plotB,&quot;Cerrillos&quot;,lon(1,loc(1),loc(0)),lat(1,loc(1),loc(0)),txres)</span></div><div>      delete(wks)   ; Make sure PNG file is closed</div><div>  end do</div></div><div><br></div></div>