Hi Sushant<br>I send you a little example that allow to draw a rectangle using world coordinates, so you can change the size or change slightly the geographic region selected for your plot and the rectangle will be &quot;anchored&quot; to its geographic position. This small code shoul by used in a *.gs script.<br>
Best regards.<br><br>Lic. Hernán Sala<br>
Instituto Antártico Argentino<br><br><br>*Draw rectangle<br>&#39;set line 7 1 6&#39;<br>lon1= 135<br>lat1= -78<br>&#39;q w2xy &#39;lon1&#39; &#39;lat1<br>say result<br>x1 = subwrd(result,3)<br>y1 = subwrd(result,6)<br>lon2= 239<br>
lat2= -70<br>&#39;q w2xy &#39;lon2&#39; &#39;lat2<br>say result<br>x2 = subwrd(result,3)<br>y2 = subwrd(result,6)<br>&#39;draw rec &#39;x1&#39; &#39;y1&#39; &#39;x2&#39; &#39;y2<br><br><br><br><br>