<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">NCL experts,<br>
<br>
I'm new to ncl.&nbsp; I have one-dimensional arrays of lat and lon.&nbsp; I'm trying to plot the locations as markers in red to see the coverage on map.&nbsp; My result only shows the blank map.&nbsp; If I call frame(wks) (see snippet below), I got two png files as output, one
 shows the blank map and the other shows the marked region.&nbsp; How can I overlay the markers to the blank map?<br>
<br>
-------------------------------------------------------------------------------------------<br>
wks = gsn_open_wks (&quot;png&quot;, &quot;ncl.png&quot;)&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; open workstation<br>
gsn_define_colormap(wks, &quot;WhViBlGrYeOrRe&quot;)&nbsp;&nbsp;&nbsp; ; choose colormap<br>
nc1 = NhlNewColor(wks,.8,.8,.8)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; ; Add light gray to colormap for continents<br>
...<br>
res&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; plot mods desired<br>
res@gsnMaximize&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; maxmize plot in frame<br>
res@mpDataBaseVersion&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = &quot;MediumRes&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; use finer database<br>
res@mpOutlineBoundarySets&nbsp; = &quot;National&quot;<br>
map = gsn_csm_map(wks,res)<br>
<br>
gsres&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = True<br>
gsres@gsMarkerIndex = 16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Use filled dots for markers<br>
gsres@gsMarkerSizeF = 5.0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; select size to avoid streaking<br>
gsres@gsMarkerColor&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = (/&quot;red&quot;/)&nbsp;&nbsp; ; Marker color<br>
gsn_polymarker(wks, map, lon, lat, gsres)<br>
<br>
; Call this will produce two png files<br>
frame(wks)<br>
----------------------------------------------------------------------------------------------<br>
<br>
Regards,<br>
Jianfu Pan<br>
</div>
</body>
</html>