<div dir="ltr"><div class="gmail_default" style="font-size:small">Arun,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Map tickmarks are very limited, and the tmXB / tmYL resources are disabled for most map projections.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">You didn&#39;t say what kind of map projection you have, but you should visit our map tickmarks examples page to see ways that you can add your own tickmarks to projections other than standard lat/lon:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style=""><a href="http://www.ncl.ucar.edu/Applications/mptick.shtml">http://www.ncl.ucar.edu/Applications/mptick.shtml</a><br></div><div class="gmail_default" style=""><br></div><div class="gmail_default" style="">In particular, look at examples mptick_9.ncl, and maybe the two after this. </div><div class="gmail_default" style=""><br></div><div class="gmail_default" style="">--Mary</div><div class="gmail_default" style=""><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 5, 2015 at 6:16 AM, Arun Kumar Dwivedi <span dir="ltr">&lt;<a href="mailto:dwivedi.arunkumar@gmail.com" target="_blank">dwivedi.arunkumar@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello Everyone,<div>I need to modify the interval on x and y axes according to my necessity but I am not able to do that. I have attached the screenshot of my ncl window and my is my code is as following: <div><br></div><div><br></div><div><div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;      ;Load the required library files</div><div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl&quot;</div><div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl&quot; </div><div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl&quot;</div><div><br></div><div>begin                                                         ;NCL script always start with &#39;begin&#39; </div><div><br></div><div>  a = addfile(&quot;<a href="http://wrfout_d01_2014-08-08_00.nc" target="_blank">wrfout_d01_2014-08-08_00.nc</a>&quot;,&quot;r&quot;)              ;Loads the required nc file</div><div><br></div><div>; Type of plot outputfile       </div><div>;type = &quot;x11&quot;</div><div>; type = &quot;pdf&quot;</div><div>; type = &quot;ps&quot;</div><div>; type = &quot;ncgm&quot;</div><div> type = &quot;png&quot;</div><div>;type@wkWidth = 600</div><div>;type@wkHeight = 800</div><div>  wks = gsn_open_wks(type,&quot;final_gsn&quot;)                     ; Create op plot file with name</div><div><br></div><div><br></div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>; First get the variables we will need            </div><div><span style="white-space:pre-wrap">        </span>tk2 = wrf_user_getvar(a,&quot;HGT&quot;,0)     ; T2 in Kelvin</div><div><span style="white-space:pre-wrap">        </span>tc2 = tk2-273.16                  ; T2 in C   </div><div><span style="white-space:pre-wrap">        </span>lat = wrf_user_getvar(a,&quot;XLAT&quot;,0)</div><div><span style="white-space:pre-wrap">        </span>lon = wrf_user_getvar(a,&quot;XLONG&quot;,0)</div><div><span style="white-space:pre-wrap">        </span>;print(lat(:,0))<span style="white-space:pre-wrap">                        </span>;all lat values</div><div><span style="white-space:pre-wrap">        </span>;print(lon(0,:))<span style="white-space:pre-wrap">                        </span>;all lon values</div><div><br></div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>; Plotting options for T                </div><div><span style="white-space:pre-wrap">        </span>res = True            </div><div><span style="white-space:pre-wrap">        </span>res@gsnDraw      = False             <span style="white-space:pre-wrap">        </span>;Don&#39;t draw yet</div><div>  <span style="white-space:pre-wrap">        </span>res@gsnFrame     = False<span style="white-space:pre-wrap">                </span>;Don&#39;t advance the frame(plot file will create but nothing will draw)</div><div><span style="white-space:pre-wrap">        </span>res@gsnSpreadColors       = True       <span style="white-space:pre-wrap">        </span>; use full range of colormap</div><div><span style="white-space:pre-wrap">        </span>res@gsnMaximize          = True   <span style="white-space:pre-wrap">        </span>;maximize plot in frame</div><div><span style="white-space:pre-wrap">        </span>res@cnFillOn = True  <span style="white-space:pre-wrap">                        </span>;Turn On the contour color</div><div><span style="white-space:pre-wrap">        </span>res@cnLinesOn = False<span style="white-space:pre-wrap">                        </span>;Turn Off the contour lines</div><div><br></div><div><span style="white-space:pre-wrap">        </span>res@lbTitleOn = False<span style="white-space:pre-wrap">                        </span>;Turn off the color bar text<span style="white-space:pre-wrap">                </span></div><div><span style="white-space:pre-wrap">        </span>res@lbOrientation = &quot;Vertical&quot;<span style="white-space:pre-wrap">                </span>;color bar orientation</div><div><br></div><div><span style="white-space:pre-wrap">        </span>;res@pmLabelBarSide = &quot;Right&quot;<span style="white-space:pre-wrap">                </span>;color bar position<span style="white-space:pre-wrap">        </span></div><div><span style="white-space:pre-wrap">        </span>res@pmTickMarkDisplayMode = &quot;Always&quot;  <span style="white-space:pre-wrap">        </span></div><div><br></div><div><span style="white-space:pre-wrap">        </span>res@mpGridAndLimbOn = False</div><div><span style="white-space:pre-wrap">        </span>res@mpOutlineOn = False  ;NCL Map outline off(Outline taking from shapefile)</div><div><span style="white-space:pre-wrap">        </span>res@mpFillOn    = False</div><div><span style="white-space:pre-wrap">        </span>;res@mpTickMarkDisplayMode = &quot;Never&quot;<span style="white-space:pre-wrap">        </span>;put it off otherwise some tick marks reqources will not work </div><div><br></div><div><br></div><div>;Necessary for contours to be overlaid correctly on WRF projection</div><div>  <span style="white-space:pre-wrap">        </span>res@tfDoNDCOverlay       = True</div><div>  <span style="white-space:pre-wrap">        </span>;res@gsnAddCyclic         = True</div><div><br></div><div><span style="white-space:pre-wrap">        </span>res@tiMainString         = &quot;Terrain Height (m)  &quot;</div><div><span style="white-space:pre-wrap">        </span>res@tiMainFontHeightF     =  0.03 </div><div><span style="white-space:pre-wrap">        </span></div><div>;<span style="white-space:pre-wrap">        </span>res@tmEqualizeXYSizes = True<span style="white-space:pre-wrap">        </span>;share the same label font height and major and minor tick lengths</div><div>  <span style="white-space:pre-wrap">        </span>res@tmXBOn = True</div><div>  <span style="white-space:pre-wrap">        </span>res@tmYLOn = True</div><div><span style="white-space:pre-wrap">        </span>res@tmXBMode      = &quot;Manual&quot;   <span style="white-space:pre-wrap">        </span>; Define your own tick mark labels.</div><div><span style="white-space:pre-wrap">        </span>res@tmYLMode      = &quot;Manual&quot;   <span style="white-space:pre-wrap">        </span>; Define your own tick mark labels.</div><div><span style="white-space:pre-wrap">        </span>;res@tmXBLabelFontColor = 1<span style="white-space:pre-wrap">        </span>; Change the color of the x-axis</div><div><span style="white-space:pre-wrap">        </span>res@tmXBLabelAngleF = 0<span style="white-space:pre-wrap">                        </span>; Change the angle on x-axis (bottom) values</div><div>  <span style="white-space:pre-wrap">        </span>res@tmXBLabelFont = 0           <span style="white-space:pre-wrap">        </span>; Change font of labels.</div><div>  <span style="white-space:pre-wrap">        </span>res@tmYLLabelFont = 0           <span style="white-space:pre-wrap">        </span>; Change font of labels.<span style="white-space:pre-wrap">        </span></div><div><span style="white-space:pre-wrap">        </span>res@tmXBLabelFontHeightF<span style="white-space:pre-wrap">        </span>=0.015<span style="white-space:pre-wrap">        </span>; Change font height of labels.</div><div><span style="white-space:pre-wrap">        </span>res@tmYLLabelFontHeightF<span style="white-space:pre-wrap">        </span>=0.02<span style="white-space:pre-wrap">        </span>; Change font height of labels.</div><div><span style="white-space:pre-wrap">        </span>;res@tmXBLabelFontAspectF<span style="white-space:pre-wrap">        </span>= 1.3</div><div><span style="white-space:pre-wrap">        </span>res@tmXBLabelFontThicknessF<span style="white-space:pre-wrap">        </span>= 5</div><div><span style="white-space:pre-wrap">        </span>res@tmYLLabelFontThicknessF<span style="white-space:pre-wrap">        </span>= 5</div><div><br></div><div>res@tmXBTickStartF = min(lon(0,:))<span style="white-space:pre-wrap">        </span></div><div>res@tmXBTickEndF = max(lon(0,:))<span style="white-space:pre-wrap">        </span></div><div>res@tmXBTickSpacingF = 2</div><div>res@tmYLTickStartF = min(lat(:,0))<span style="white-space:pre-wrap">        </span></div><div>res@tmYLTickEndF = max(lat(:,0))<span style="white-space:pre-wrap">        </span></div><div>res@tmYLTickSpacingF = 2</div><div><span style="white-space:pre-wrap">        </span></div><div><span style="white-space:pre-wrap">        </span></div><div><br></div><div><br></div><div><br></div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div><br></div><div>;Set map resources based on projection on WRF output file</div><div>  <span style="white-space:pre-wrap">        </span>res = wrf_map_resources(a,res)</div><div><span style="white-space:pre-wrap">        </span>contour_tc = gsn_csm_contour_map(wks,tc2,res)   </div><div><br></div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>;Attach shapefile polylines to map </div><div><span style="white-space:pre-wrap">        </span></div><div><span style="white-space:pre-wrap">        </span>lnres = True  </div><div><span style="white-space:pre-wrap">        </span>lnres@NoHeaderFooterOn = True<span style="white-space:pre-wrap">        </span></div><div><span style="white-space:pre-wrap">        </span>lnres@gsLineColor      = &quot;Black&quot;</div><div> <span style="white-space:pre-wrap">        </span>lnres@gsLineThicknessF = 3.0</div><div><span style="white-space:pre-wrap">        </span></div><div><br></div><div>  poly = gsn_add_shapefile_polylines(wks,contour_tc,&quot;india_state.shp&quot;,lnres)</div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>;Now everything will be drawn</div><div>draw(contour_tc)</div><div>frame(wks)</div><div><br></div><div>end</div><div><br></div><div><br></div><div>Kindly help me.</div>Thanks &amp; Regards<span class="HOEnZb"><font color="#888888"><br><div><div dir="ltr"><div><div dir="ltr">Arun Kumar Dwivedi,<br></div><div dir="ltr">Mob :09546189035</div></div></div></div>
</font></span></div></div></div>
<br>_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">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><br>
<br></blockquote></div><br></div>