lai/32.contour_land_class.ncl
author Forrest Hoffman <forrest@climatemodeling.org>
Mon, 26 Jan 2009 22:08:20 -0500
changeset 0 0c6405ab2ff4
permissions -rw-r--r--
Initial commit of C-LAMP Diagnostics from Jeff Lee
forrest@0
     1
;*************************************************
forrest@0
     2
; ce_1.ncl
forrest@0
     3
;************************************************
forrest@0
     4
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"  
forrest@0
     5
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
forrest@0
     6
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"   
forrest@0
     7
;************************************************
forrest@0
     8
begin
forrest@0
     9
;************************************************
forrest@0
    10
; read in observed data
forrest@0
    11
;************************************************
forrest@0
    12
  diri  = "/fis/cgd/cseg/people/jeff/clamp_data/lai/"
forrest@0
    13
; fili  = "land_class_0.25deg.nc"
forrest@0
    14
  fili  = "land_class_T42_new.nc" 
forrest@0
    15
  f     = addfile(diri+fili,"r")
forrest@0
    16
  print (f)
forrest@0
    17
forrest@0
    18
; y     = f->LAND_CLASS(::10,::10)   ; for 0.25deg
forrest@0
    19
; y    =  (/ y(::-1,:) /)            ; for 0.25deg
forrest@0
    20
forrest@0
    21
  y     = f->LAND_CLASS
forrest@0
    22
  printVarSummary(y)
forrest@0
    23
forrest@0
    24
  y = where(y.eq.0,y@_FillValue,y)
forrest@0
    25
forrest@0
    26
  printVarSummary(y)
forrest@0
    27
  print (min(y)+"/"+max(y))
forrest@0
    28
;************************************************
forrest@0
    29
; create default plot
forrest@0
    30
;************************************************
forrest@0
    31
  wks = gsn_open_wks("ps","xy")              ; open a ps file
forrest@0
    32
  gsn_define_colormap(wks,"gui_default")     ; choose colormap
forrest@0
    33
forrest@0
    34
  res                     = True             ; Use plot options
forrest@0
    35
  res@cnFillOn            = True             ; Turn on color fill
forrest@0
    36
  res@gsnSpreadColors     = True             ; use full colormap
forrest@0
    37
; res@cnFillMode          = "RasterFill"     ; Turn on raster color
forrest@0
    38
; res@lbLabelAutoStride   = True
forrest@0
    39
  res@cnLinesOn           = False            ; Turn off contourn lines
forrest@0
    40
  res@mpFillOn            = False            ; Turn off map fill
forrest@0
    41
  res@tiMainString        = "MODIS LAND CLASS T42"
forrest@0
    42
forrest@0
    43
  res@gsnSpreadColors      = True            ; use full colormap
forrest@0
    44
  res@cnLevelSelectionMode = "ManualLevels"  ; Manual contour invtervals
forrest@0
    45
  res@cnMinLevelValF       = 1.              ; Min level
forrest@0
    46
  res@cnMaxLevelValF       = 19.             ; Max level
forrest@0
    47
  res@cnLevelSpacingF      = 1.              ; interval
forrest@0
    48
  pres                     = True            ; panel plot mods desired
forrest@0
    49
  pres@gsnMaximize         = True            ; fill the page
forrest@0
    50
forrest@0
    51
  plot = gsn_csm_contour_map_ce(wks,y,res)   ; for observed
forrest@0
    52
  gsn_panel(wks,plot,(/1,1/),pres)           ; create panel plot
forrest@0
    53
  system("convert xy.ps xy.png")
forrest@0
    54
end