<div dir="ltr"><div>Hi,</div><div><br></div><div>If you have an excel file, perhaps the easiest thing is to export it as a CSV file to read with NCL for plotting. See this link for how to read and parse such files to extract your lat/lon positions:</div><div><br></div><div>    <a href="http://ncl.ucar.edu/Applications/read_csv.shtml">http://ncl.ucar.edu/Applications/read_csv.shtml</a></div><div><br></div><div>This link shows how to draw markers on top of a map:</div><div><br></div><div>    <a href="http://ncl.ucar.edu/Applications/polyg.shtml">http://ncl.ucar.edu/Applications/polyg.shtml</a></div><div><br></div><div>The key elements here are:</div><div><br></div><div>i) set the resources <br></div><div>   res@gsnFrame = False</div><div>   res@gsnDraw = False</div><div><br></div><div>where "res" is the resource variable that gets passed into making your plot</div><div><br></div><div>ii) use gsn_add_polymarker to draw the markers on top of the plot. See:</div><div><br></div><div>    <a href="http://ncl.ucar.edu/Document/Graphics/Interfaces/gsn_add_polymarker.shtml">http://ncl.ucar.edu/Document/Graphics/Interfaces/gsn_add_polymarker.shtml</a></div><div><br></div><div>and <br></div><div><br></div><div>    <a href="http://ncl.ucar.edu/Document/Graphics/Resources/gs.shtml">http://ncl.ucar.edu/Document/Graphics/Resources/gs.shtml</a></div><div><br></div><div>for the various "gsMarkerXXX" resources that control marker style, color, size, etc</div><div><br></div><div>and finally</div><div><br></div><div>    <a href="http://ncl.ucar.edu/Document/Graphics/Images/markers.png">http://ncl.ucar.edu/Document/Graphics/Images/markers.png</a></div><div><br></div><div>for the available marker styles</div><div><br></div><div>iii)  Call</div><div>   draw(plot)</div><div>   frame(wks)   <br></div><div><br></div><div>to draw you plot with the attached markers</div><div><br></div><div>Hope that helps...</div><div>Rick</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Aug 29, 2019 at 5:06 AM zoe jacobs via ncl-talk <<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>I have got an excel file containing stations names plus their lat/lon. What I  need is to show the location and name of stations on my plot with markers, like black circles  ( my plot is based on a model output). Would you please help me how can I do this.</div><div>look forward to hearing from you.</div><div>Kind regards, </div></div>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></blockquote></div>