;******** srcFileName="tasmax_rcp85_land-rcm_uk_12km_time10.nc" ;---Read File f=addfile(srcFileName,"r") print(f) ;---Get the source lat/lon grid tas = f->tasmax(0,0,:,:) lat2d = f->grid_latitude lon2d = f->grid_longitude tas@lat2d=lat2d ; f->grid_latitude tas@lon2d=lon2d ; f->grid_longitude ;---Plot data wks = gsn_open_wks("png","SBR_map") res = True res@gsnMaximize = True ; maximize plot in frame res@cnFillOn = True ; turn on contour fill res@cnLinesOn = False ; turn off contour fill res@gsnAddCyclic = False res@mpMinLatF = min(lat2d) res@mpMaxLatF = max(lat2d) res@mpMinLonF = min(lon2d) res@mpMaxLonF = max(lon2d) res@mpDataBaseVersion = "MediumRes" res@mpLandFillColor = "white" plot = gsn_csm_contour_map(wks,tas,res)