<div>Hi all,</div><div><br></div><div>I am just trying to have a map that shows daily precipitation over Argentina and also have some red circles to indicate a few station locations.  Below I have the script I have been using with only one station for the draw mark command but I will be doing this for multiple stations.  I did this for a map over North America and everything worked fine.  Now trying for argentina I keep getting a syntax error for the line: &#39;q w2xy &#39;lon1&#39;<span style="white-space:pre-wrap"> &#39;lat1 .  As I said this worked fine for North America when I tried so not sure if this is something to do with the negative latitude now.</span></div>
<div><span style="white-space:pre-wrap"><br></span></div><div><span style="white-space:pre-wrap">Thank you for any help you can provide,</span></div><div><span style="white-space:pre-wrap"><br></span></div><div><span style="white-space:pre-wrap">Kyle</span></div>
<div><br></div><div><br></div><div>&#39;open ArgentinaPrecip.ctl&#39;</div><div>*</div><div>&#39;set display color white&#39;</div>
<div>&#39;c&#39;</div><div>*</div><div>&#39;set grads off&#39;</div><div>&#39;set gxout shaded&#39;</div><div>&#39;set csmooth on&#39;</div>
<div>&#39;set mpdset hires&#39;</div><div>*</div>
<div>&#39;set cmin 0.01&#39;</div><div>&#39;d apcpsfc&#39;</div><div>*</div><div>&#39;draw title Daily Accumulated Precipitation (mm)&#39;</div><div>*</div><div>&#39;set line 2&#39;</div><div>*</div><div>style=3</div><div>

size=0.03</div><div>*</div><div>*Introduces world Coordinates</div><div>lon1 =292</div><div>lat1 =-35</div><div>*Converts world coords to XY coords it will be recalculated each time the map changes<span style="white-space:pre-wrap">        </span></div>

<div>&#39;q w2xy &#39;lon1&#39;<span style="white-space:pre-wrap"> &#39;lat1</span></div><div>say result<span style="white-space:pre-wrap">        </span></div><div>*Loads the XY coords in x1 and y1<span style="white-space:pre-wrap">        </span></div>

<div>x1 = subwrd(result,3)<span style="white-space:pre-wrap">        </span></div><div>y1 = subwrd(result,6)<span style="white-space:pre-wrap">        </span></div><div>*Draws a marker at x1 y1 position with selected size<span style="white-space:pre-wrap">        </span></div>

<div>&#39;draw mark &#39;style&#39; &#39;x1&#39; &#39;y1&#39; &#39;size<span style="white-space:pre-wrap">        </span></div><div>*</div><div><br></div>