co2/18.metric_plot.ncl
changeset 0 0c6405ab2ff4
equal deleted inserted replaced
-1:000000000000 0:276923539ac4
       
     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 load "/fis/cgd/cseg/people/jeff/clamp/co2/metrics_table.ncl"
       
     8 ;************************************************
       
     9 begin
       
    10 ;************************************************
       
    11 ; read in data: observed
       
    12 ;************************************************
       
    13  diri  = "/fis/cgd/cseg/people/jeff/clamp_data/co2/"
       
    14  fili  = "co2_globalView_98.nc"
       
    15  g     = addfile (diri+fili,"r")
       
    16  val   = g->CO2_SEAS  
       
    17  lon   = g->LON 
       
    18  lat   = g->LAT
       
    19  sta   = chartostring(g->STATION) 
       
    20  delete (g)
       
    21  
       
    22 ;print (sta(0))
       
    23 
       
    24  ncase = dimsizes(lat)
       
    25 ;print (ncase)
       
    26 
       
    27 ;**************************************************************
       
    28 ; get only the lowest level at each station 
       
    29 ;**************************************************************
       
    30  lat_tmp = lat
       
    31  lat_tmp@_FillValue = 1.e+36
       
    32  
       
    33  do n = 0,ncase-1
       
    34     if (.not. ismissing(lat_tmp(n))) then 
       
    35        indexes = ind(lat(n) .eq. lat .and. lon(n) .eq. lon)
       
    36        if (dimsizes(indexes) .gt. 1) then
       
    37           lat_tmp(indexes(1:)) = lat_tmp@_FillValue
       
    38        end if
       
    39        delete (indexes)
       
    40     end if
       
    41  end do
       
    42 
       
    43  indexes = ind(.not. ismissing(lat_tmp))
       
    44 ;print (dimsizes(indexes))
       
    45 ;print (indexes)
       
    46  
       
    47  lat_ob = lat(indexes)
       
    48  lon_ob = lon(indexes)
       
    49  val_ob = val(indexes,:)
       
    50 ;printVarSummary (val_ob)
       
    51 ;print (lat_ob +"/"+lon_ob)
       
    52 
       
    53 ;************************************************
       
    54 ; read in model data
       
    55 ;************************************************
       
    56   diri2 = "/fis/cgd/cseg/people/jeff/clamp_data/model/"
       
    57 ; fili2 = "b30.061m_401_425_MONS_climo_atm.nc"
       
    58   fili2 = "b30.061n_1995-2004_MONS_climo_atm.nc"
       
    59 
       
    60   g     = addfile(diri2+fili2,"r")
       
    61   x     = g->CO2
       
    62   xi    = g->lon
       
    63   yi    = g->lat
       
    64   xdim  = dimsizes(x)
       
    65   nlev  = xdim(1)
       
    66   y     = x(:,0,:,:)
       
    67 ; printVarSummary (y)
       
    68   
       
    69 ; get the co2 at the lowest level
       
    70   y     = x(:,nlev-1,:,:)
       
    71 
       
    72 ; change to unit of observed (u mol/mol)
       
    73 ; Model_units [=] kgCO2 / kgDryAir
       
    74 ; 28.966 = molecular weight of dry air
       
    75 ; 44.       = molecular weight of CO2
       
    76 ; u mol = 1e-6 mol
       
    77 
       
    78   factor = (28.966/44.) * 1e6
       
    79   y      = y * factor
       
    80 
       
    81   y@_FillValue = 1.e36
       
    82   y@units      = "u mol/mol"
       
    83 ; y = where(y0 .lt. 287.,y@_FillValue,y)
       
    84 ; printVarSummary (y)
       
    85 ; print (min(y)+"/"+max(y))
       
    86 
       
    87 ; interpolate into observed station
       
    88 ; note: model is 0-360E, 90S-90N
       
    89 
       
    90 ; to be able to handle observation at (-89.98,-24.80)
       
    91   print (yi(0))
       
    92   yi(0) = -90.
       
    93 
       
    94   i = ind(lon_ob .lt. 0.)
       
    95   lon_ob(i) = lon_ob(i) + 360.  
       
    96 
       
    97   yo = linint2_points_Wrap(xi,yi,y,True,lon_ob,lat_ob,0)
       
    98 
       
    99   val_model = yo(pts|:,time|:)
       
   100 ; printVarSummary (val_model)
       
   101 ; print (min(val_model)+"/"+max(val_model))
       
   102 
       
   103 ; remove annual mean
       
   104   val_model = val_model - conform(val_model,dim_avg(val_model),0)
       
   105 ; print (min(val_model)+"/"+max(val_model))
       
   106 
       
   107   nzone = 4
       
   108   do z = 0,nzone-1
       
   109 
       
   110   if (z .eq. 0) then 
       
   111 ;    maximum score for the zone, 60N-90N
       
   112      zone = "60N-90N" 
       
   113      score_max = 5.0
       
   114 ;    index of stations in this zone
       
   115      ind_z = ind(lat_ob .ge. 60.)
       
   116 ;    print (ind_z)
       
   117 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   118 ;    print (val_ob(ind_z,:))
       
   119 ;    print (val_model(ind_z,:))
       
   120   end if
       
   121 
       
   122   if (z .eq. 1) then 
       
   123 ;    maximum score for the zone, 30N-60N
       
   124      zone = "30N-60N" 
       
   125      score_max = 5.0
       
   126 ;    index of stations in this zone
       
   127      ind_z = ind(lat_ob .ge. 30. .and. lat_ob .lt. 60.)
       
   128 ;    print (ind_z)
       
   129 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   130 ;    print (val_ob(ind_z,:))
       
   131 ;    print (val_model(ind_z,:))
       
   132   end if
       
   133 
       
   134   if (z .eq. 2) then 
       
   135 ;    maximum score for the zone, EQ-30N 
       
   136      zone = "EQ-30N"
       
   137      score_max = 5.0
       
   138 ;    index of stations in this zone
       
   139      ind_z = ind(lat_ob .ge. 0. .and. lat_ob .lt. 30.)
       
   140 ;    print (ind_z)
       
   141 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   142 ;    print (val_ob(ind_z,:))
       
   143 ;    print (val_model(ind_z,:))
       
   144   end if
       
   145 
       
   146   if (z .eq. 3) then 
       
   147 ;    maximum score for the zone, 90S-EQ
       
   148      zone = "90S-EQ" 
       
   149      score_max = 5.0
       
   150 ;    index of stations in this zone
       
   151      ind_z = ind(lat_ob .lt. 0. )
       
   152 ;    print (ind_z)
       
   153 ;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
       
   154 ;    print (val_ob(ind_z,:))
       
   155 ;    print (val_model(ind_z,:))
       
   156   end if
       
   157 
       
   158  npts = dimsizes(ind_z)
       
   159  print (npts)
       
   160 
       
   161  amp_ob        = new((/npts/),float)
       
   162  amp_model     = new((/npts/),float)
       
   163 
       
   164  amp_ratio_sta = new((/npts/),float)
       
   165  ccr_sta       = new((/npts/),float)
       
   166  M_sta         = new((/npts/),float)
       
   167  score_sta     = new((/npts/),float)
       
   168 
       
   169  do n=0,npts-1
       
   170     amp_ob(n)    = max(val_ob(ind_z(n),:)) - min(val_ob(ind_z(n),:)) 
       
   171     amp_model(n) = max(val_model(ind_z(n),:)) - min(val_model(ind_z(n),:))
       
   172 
       
   173     amp_ratio_sta(n) = amp_model(n)/amp_ob(n)
       
   174     ccr_sta(n) = esccr(val_ob(ind_z(n),:),val_model(ind_z(n),:),0)
       
   175     M_sta(n) = 1.-abs(amp_ratio_sta(n)-1.)
       
   176     score_sta(n) = (ccr_sta(n)*ccr_sta(n) + M_sta(n))*0.5 * score_max
       
   177 
       
   178     print (sta(ind_z(n))+"/"+lat(ind_z(n))+"/"+lon(ind_z(n))+"/"+amp_ratio_sta(n)+"/"+ccr_sta(n)+"/"+M_sta(n)+"/"+score_sta(n))  
       
   179  end do
       
   180 
       
   181  amp_ratio_zone = avg(amp_ratio_sta)
       
   182  ccr_zone       = avg(ccr_sta)
       
   183  M_zone   = 1.- (sum(abs(amp_model-amp_ob)/(amp_model+amp_ob))/npts) 
       
   184  score_zone   = (ccr_zone*ccr_zone + M_zone)*0.5 * score_max
       
   185 
       
   186  print (npts+"/"+amp_ratio_zone+"/"+ccr_zone+"/"+M_zone+"/"+score_zone)  
       
   187 ;****************************************************************************
       
   188 ; Cases [Model]
       
   189   case      = (/"Latitude","Longitude","Amplitude Ratio", \
       
   190                 "Correlation Coef","M score","Combined Score"/) 
       
   191   nCase     = dimsizes(case )                 ; # of Cases [Cases]
       
   192 
       
   193 ; variables compared
       
   194   var       = sta(ind_z) 
       
   195   nVar      = dimsizes(var)                   ; # of Variables
       
   196 
       
   197 ; arrays to be passed to diagram. It will calculate the x xnd y coordinates.
       
   198   case_value = new ((/nCase, nVar/),float )  
       
   199 
       
   200   case_value(0,:) = (/lat(ind_z)/)
       
   201   case_value(1,:) = (/lon(ind_z)/)
       
   202   case_value(2,:) = (/amp_ratio_sta/)
       
   203   case_value(3,:) = (/ccr_sta/)
       
   204   case_value(4,:) = (/M_sta/)
       
   205   case_value(5,:) = (/score_sta/)
       
   206  
       
   207 ;**************************************************
       
   208 ; fill an array for a "metrics table"
       
   209 ;**************************************************
       
   210 
       
   211   tt_opt        = True
       
   212   tt_opt@pltType= "ps"                  ; "eps" [default], "pdf", "ps"
       
   213                                         ; "png", "gif" [if you have ImageMajik 'convert']
       
   214 
       
   215   tt_opt@tableTitle = "Zone "+ zone
       
   216   plot_name         = "co2." + zone
       
   217 
       
   218   metrics_table(plot_name, var, case , case_value, tt_opt)
       
   219 
       
   220  delete (ind_z)
       
   221  delete (amp_model)
       
   222  delete (amp_ob)
       
   223  delete (amp_ratio_sta)
       
   224  delete (ccr_sta)
       
   225  delete (M_sta)
       
   226  delete (score_sta)
       
   227  delete (var)
       
   228  delete (case_value)
       
   229  end do
       
   230 end