co2/21.lines.ncl
changeset 0 0c6405ab2ff4
equal deleted inserted replaced
-1:000000000000 0:b1ba08cd42f0
       
     1 ; ***********************************************
       
     2 ; xy_4.ncl
       
     3 ; ***********************************************
       
     4 load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
       
     5 load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
       
     6 load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
       
     7 ;************************************************
       
     8 begin
       
     9 ;************************************************
       
    10 ; read in data: observed
       
    11 ;************************************************
       
    12  diri  = "/fis/cgd/cseg/people/jeff/clamp_data/co2/"
       
    13  fili  = "co2_globalView_98.nc"
       
    14  g     = addfile (diri+fili,"r")
       
    15  val   = g->CO2_SEAS  
       
    16  lon   = g->LON 
       
    17  lat   = g->LAT
       
    18  sta   = chartostring(g->STATION) 
       
    19  delete (g)
       
    20  
       
    21 ;print (sta(0))
       
    22 
       
    23  ncase = dimsizes(lat)
       
    24 ;print (ncase)
       
    25 
       
    26 ;**************************************************************
       
    27 ; get only the lowest level at each station 
       
    28 ;**************************************************************
       
    29  lat_tmp = lat
       
    30  lat_tmp@_FillValue = 1.e+36
       
    31  
       
    32  do n = 0,ncase-1
       
    33     if (.not. ismissing(lat_tmp(n))) then 
       
    34        indexes = ind(lat(n) .eq. lat .and. lon(n) .eq. lon)
       
    35        if (dimsizes(indexes) .gt. 1) then
       
    36           lat_tmp(indexes(1:)) = lat_tmp@_FillValue
       
    37        end if
       
    38        delete (indexes)
       
    39     end if
       
    40  end do
       
    41 
       
    42  indexes = ind(.not. ismissing(lat_tmp))
       
    43 ;print (dimsizes(indexes))
       
    44 ;print (indexes)
       
    45  
       
    46  lat_ob = lat(indexes)
       
    47  lon_ob = lon(indexes)
       
    48  val_ob = val(indexes,:)
       
    49 ;printVarSummary (val_ob)
       
    50 ;print (lat_ob +"/"+lon_ob)
       
    51 
       
    52 ;************************************************
       
    53 ; read in model data
       
    54 ;************************************************
       
    55   diri2 = "/fis/cgd/cseg/people/jeff/clamp_data/model/"
       
    56   fili2 = "b30.061m_401_425_MONS_climo.nc"
       
    57 
       
    58   g     = addfile(diri2+fili2,"r")
       
    59   x     = g->CO2
       
    60   xi    = g->lon
       
    61   yi    = g->lat
       
    62   xdim  = dimsizes(x)
       
    63   nlev  = xdim(1)
       
    64   y     = x(:,0,:,:)
       
    65 ; printVarSummary (y)
       
    66   
       
    67 ; get the co2 at the lowest level
       
    68   y     = x(:,nlev-1,:,:)
       
    69 
       
    70 ; change to unit of observed (u mol/mol)
       
    71 ; Model_units [=] kgCO2 / kgDryAir
       
    72 ; 28.966 = molecular weight of dry air
       
    73 ; 44.       = molecular weight of CO2
       
    74 ; u mol = 1e-6 mol
       
    75 
       
    76   factor = (28.966/44.) * 1e6
       
    77   y      = y * factor
       
    78 
       
    79   y@_FillValue = 1.e36
       
    80   y@units      = "u mol/mol"
       
    81 ; y = where(y0 .lt. 287.,y@_FillValue,y)
       
    82 ; printVarSummary (y)
       
    83 ; print (min(y)+"/"+max(y))
       
    84 
       
    85 ; interpolate into observed station
       
    86 ; note: model is 0-360E, 90S-90N
       
    87 
       
    88 ; to be able to handle observation at (-89.98,-24.80)
       
    89   print (yi(0))
       
    90   yi(0) = -90.
       
    91 
       
    92   i = ind(lon_ob .lt. 0.)
       
    93   lon_ob(i) = lon_ob(i) + 360.  
       
    94 
       
    95   yo = linint2_points_Wrap(xi,yi,y,True,lon_ob,lat_ob,0)
       
    96 
       
    97   val_model = yo(pts|:,time|:)
       
    98 ; printVarSummary (val_model)
       
    99 ; print (min(val_model)+"/"+max(val_model))
       
   100 
       
   101 ; remove annual mean
       
   102   val_model = val_model - conform(val_model,dim_avg(val_model),0)
       
   103 ; print (min(val_model)+"/"+max(val_model))
       
   104 
       
   105   plot_sta      = new((/2,12/),float)
       
   106   plot_sta@long_name = "Seasonal CO2"
       
   107 
       
   108   mon = ispan(1,12,1)
       
   109   mon@long_name = "month"
       
   110 
       
   111   plot_type = "ps"
       
   112   plot_type_new = "png"
       
   113 
       
   114   res                   = True                      ; plot mods desired
       
   115   res@xyLineThicknesses = (/1.0,2.0/)               ; make 2nd lines thicker
       
   116   res@xyLineColors      = (/"blue","red"/)          ; change line color
       
   117 
       
   118 ;------------------------------------------------------------------
       
   119 ; Add a boxed legend using the more simple method, which won't have
       
   120 ; vertical lines going through the markers.
       
   121 
       
   122   res@pmLegendDisplayMode    = "Always"
       
   123 ; res@pmLegendWidthF         = 0.1
       
   124   res@pmLegendWidthF         = 0.08
       
   125   res@pmLegendHeightF        = 0.05
       
   126 ; res@pmLegendOrthogonalPosF = -1.17
       
   127 ; res@pmLegendOrthogonalPosF = -1.00  ;(downward)
       
   128   res@pmLegendOrthogonalPosF = -0.30  ;(downward)
       
   129 
       
   130 ; res@pmLegendParallelPosF   =  0.18
       
   131   res@pmLegendParallelPosF   =  0.23  ;(rightward)
       
   132 
       
   133 ; res@lgPerimOn             = False
       
   134   res@lgLabelFontHeightF     = 0.015
       
   135   res@xyExplicitLegendLabels = (/"observed","model_b30.061m"/)
       
   136 ;-------------------------------------------------------------------
       
   137 
       
   138   nzone = 4
       
   139   do z = 0,nzone-1
       
   140 
       
   141   if (z .eq. 0) then 
       
   142 ;    maximum score for the zone, 60N-90N 
       
   143      score_max = 5.0
       
   144 ;    index of stations in this zone
       
   145      ind_z = ind(lat_ob .ge. 60.)
       
   146 ;    print (ind_z)
       
   147 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   148 ;    print (val_ob(ind_z,:))
       
   149 ;    print (val_model(ind_z,:))
       
   150   end if
       
   151 
       
   152   if (z .eq. 1) then 
       
   153 ;    maximum score for the zone, 30N-60N 
       
   154      score_max = 5.0
       
   155 ;    index of stations in this zone
       
   156      ind_z = ind(lat_ob .ge. 30. .and. lat_ob .lt. 60.)
       
   157 ;    print (ind_z)
       
   158 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   159 ;    print (val_ob(ind_z,:))
       
   160 ;    print (val_model(ind_z,:))
       
   161   end if
       
   162 
       
   163   if (z .eq. 2) then 
       
   164 ;    maximum score for the zone, EQ-30N 
       
   165      score_max = 5.0
       
   166 ;    index of stations in this zone
       
   167      ind_z = ind(lat_ob .ge. 0. .and. lat_ob .lt. 30.)
       
   168 ;    print (ind_z)
       
   169 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   170 ;    print (val_ob(ind_z,:))
       
   171 ;    print (val_model(ind_z,:))
       
   172   end if
       
   173 
       
   174   if (z .eq. 3) then 
       
   175 ;    maximum score for the zone, 90S-EQ 
       
   176      score_max = 5.0
       
   177 ;    index of stations in this zone
       
   178      ind_z = ind(lat_ob .lt. 0. )
       
   179 ;    print (ind_z)
       
   180 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   181 ;    print (val_ob(ind_z,:))
       
   182 ;    print (val_model(ind_z,:))
       
   183   end if
       
   184 
       
   185  npts = dimsizes(ind_z)
       
   186  print (npts)
       
   187 
       
   188  do n=0,npts-1
       
   189 
       
   190     plot_sta(0,:) = (/val_ob(ind_z(n),:)/)
       
   191     plot_sta(1,:) = (/val_model(ind_z(n),:)/)
       
   192     
       
   193     title = sta(ind_z(n))+"("+lat(ind_z(n))+","+lon(ind_z(n))+")"
       
   194     plot_name = sta(ind_z(n))
       
   195     
       
   196 ;   print (title)
       
   197 ;   print (plot_name)
       
   198 
       
   199     wks = gsn_open_wks (plot_type,plot_name)          ; open workstation
       
   200     res@tiMainString      = title                     ; add title
       
   201  
       
   202     plot  = gsn_csm_xy (wks,mon,plot_sta,res)         ; create plot
       
   203     frame(wks)
       
   204 
       
   205     system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new)
       
   206     system("rm "+plot_name+"."+plot_type)
       
   207     system("rm "+plot_name+"-1."+plot_type_new)
       
   208     system("mv "+plot_name+"-0."+plot_type_new+" "+plot_name+"."+plot_type_new)
       
   209     clear (wks)
       
   210  end do
       
   211 
       
   212  delete (ind_z)
       
   213 
       
   214  end do
       
   215 end