co2/99.all.ncl.0
author Forrest Hoffman <forrest@climatemodeling.org>
Thu, 26 Mar 2009 14:02:21 -0400
changeset 1 4be95183fbcd
permissions -rw-r--r--
Modifications to scoring and graphics production for the final version of code for the C-LAMP paper in GCB.
forrest@0
     1
; ***********************************************
forrest@0
     2
; using gsn_table for all
forrest@0
     3
; combine 19.metric_plot.ncl and 24.lines.ncl
forrest@0
     4
; ***********************************************
forrest@0
     5
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl.test"
forrest@0
     6
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl.test"
forrest@0
     7
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
forrest@0
     8
;load "/fis/cgd/cseg/people/jeff/clamp/co2/metrics_table.ncl"
forrest@0
     9
;************************************************
forrest@0
    10
begin
forrest@0
    11
;************************************************
forrest@0
    12
; read in model data
forrest@0
    13
;************************************************
forrest@0
    14
  diri2 = "/fis/cgd/cseg/people/jeff/clamp_data/model/"
forrest@0
    15
; fili2 = "b30.061m_401_425_MONS_climo_atm.nc"
forrest@0
    16
  fili2 = "b30.061n_1995-2004_MONS_climo_atm.nc"
forrest@0
    17
forrest@0
    18
  g     = addfile(diri2+fili2,"r")
forrest@0
    19
  x     = g->CO2
forrest@0
    20
  xi    = g->lon
forrest@0
    21
  yi    = g->lat
forrest@0
    22
  xdim  = dimsizes(x)
forrest@0
    23
  nlev  = xdim(1)
forrest@0
    24
  y     = x(:,0,:,:)
forrest@0
    25
; printVarSummary (y)
forrest@0
    26
  
forrest@0
    27
; get the co2 at the lowest level
forrest@0
    28
  y     = x(:,nlev-1,:,:)
forrest@0
    29
forrest@0
    30
; change to unit of observed (u mol/mol)
forrest@0
    31
; Model_units [=] kgCO2 / kgDryAir
forrest@0
    32
; 28.966 = molecular weight of dry air
forrest@0
    33
; 44.       = molecular weight of CO2
forrest@0
    34
; u mol = 1e-6 mol
forrest@0
    35
forrest@0
    36
  factor = (28.966/44.) * 1e6
forrest@0
    37
  y      = y * factor
forrest@0
    38
forrest@0
    39
  y@_FillValue = 1.e36
forrest@0
    40
  y@units      = "u mol/mol"
forrest@0
    41
; y = where(y0 .lt. 287.,y@_FillValue,y)
forrest@0
    42
; printVarSummary (y)
forrest@0
    43
; print (min(y)+"/"+max(y))
forrest@0
    44
forrest@0
    45
;************************************************
forrest@0
    46
; read in data: observed
forrest@0
    47
;************************************************
forrest@0
    48
 diri  = "/fis/cgd/cseg/people/jeff/clamp_data/co2/ob/"
forrest@0
    49
 fili  = "co2_globalView_98.nc"
forrest@0
    50
 g     = addfile (diri+fili,"r")
forrest@0
    51
 val   = g->CO2_SEAS  
forrest@0
    52
 lon   = g->LON 
forrest@0
    53
 lat   = g->LAT
forrest@0
    54
 sta   = chartostring(g->STATION) 
forrest@0
    55
 delete (g)
forrest@0
    56
 
forrest@0
    57
;print (sta(0))
forrest@0
    58
forrest@0
    59
 ncase = dimsizes(lat)
forrest@0
    60
;print (ncase)
forrest@0
    61
forrest@0
    62
;**************************************************************
forrest@0
    63
; get only the lowest level at each station 
forrest@0
    64
;**************************************************************
forrest@0
    65
 lat_tmp = lat
forrest@0
    66
 lat_tmp@_FillValue = 1.e+36
forrest@0
    67
 
forrest@0
    68
 do n = 0,ncase-1
forrest@0
    69
    if (.not. ismissing(lat_tmp(n))) then 
forrest@0
    70
       indexes = ind(lat(n) .eq. lat .and. lon(n) .eq. lon)
forrest@0
    71
       if (dimsizes(indexes) .gt. 1) then
forrest@0
    72
          lat_tmp(indexes(1:)) = lat_tmp@_FillValue
forrest@0
    73
       end if
forrest@0
    74
       delete (indexes)
forrest@0
    75
    end if
forrest@0
    76
 end do
forrest@0
    77
forrest@0
    78
 indexes = ind(.not. ismissing(lat_tmp))
forrest@0
    79
;print (dimsizes(indexes))
forrest@0
    80
;print (indexes)
forrest@0
    81
 
forrest@0
    82
 lat_ob = lat(indexes)
forrest@0
    83
 lon_ob = lon(indexes)
forrest@0
    84
 val_ob = val(indexes,:)
forrest@0
    85
;printVarSummary (val_ob)
forrest@0
    86
;print (lat_ob +"/"+lon_ob)
forrest@0
    87
forrest@0
    88
;************************************************************
forrest@0
    89
; interpolate model data into observed station
forrest@0
    90
; note: model is 0-360E, 90S-90N
forrest@0
    91
;************************************************************
forrest@0
    92
; to be able to handle observation at (-89.98,-24.80)
forrest@0
    93
  print (yi(0))
forrest@0
    94
  yi(0) = -90.
forrest@0
    95
forrest@0
    96
  i = ind(lon_ob .lt. 0.)
forrest@0
    97
  lon_ob(i) = lon_ob(i) + 360.  
forrest@0
    98
forrest@0
    99
  yo = linint2_points_Wrap(xi,yi,y,True,lon_ob,lat_ob,0)
forrest@0
   100
forrest@0
   101
  val_model = yo(pts|:,time|:)
forrest@0
   102
  val_model_0 = val_model
forrest@0
   103
; printVarSummary (val_model)
forrest@0
   104
; print (min(val_model)+"/"+max(val_model))
forrest@0
   105
forrest@0
   106
; remove annual mean
forrest@0
   107
  val_model = val_model - conform(val_model,dim_avg(val_model),0)
forrest@0
   108
; print (min(val_model)+"/"+max(val_model))
forrest@0
   109
forrest@0
   110
  nzone = 4
forrest@0
   111
forrest@0
   112
;*******************************************************************
forrest@0
   113
; for table -- zone
forrest@0
   114
;*******************************************************************
forrest@0
   115
; table header name
forrest@0
   116
  table_header_name = "Zone" 
forrest@0
   117
forrest@0
   118
; column (not including header column)
forrest@0
   119
  col_header_zone = (/"Stations","Amplitude Ratio", \
forrest@0
   120
                      "Correlation Coef","M score","Combined Score"/)
forrest@0
   121
  ncol_zone       = dimsizes(col_header_zone ) 
forrest@0
   122
forrest@0
   123
; row (not including header row)
forrest@0
   124
  row_header_zone = (/"60N-90N","30N-60N","EQ-30N","90S-EQ","Total"/)  
forrest@0
   125
  nrow_zone       = dimsizes(row_header_zone)                  
forrest@0
   126
forrest@0
   127
; arrays to be passed to table. 
forrest@0
   128
  value_zone = new ((/nrow_zone, ncol_zone/),string ) 
forrest@0
   129
;--------------------------------------------------------------------
forrest@0
   130
forrest@0
   131
  table_length_zone = 0.4 
forrest@0
   132
forrest@0
   133
; Table header
forrest@0
   134
  ncr1  = (/1,1/)               ; 1 row, 1 column
forrest@0
   135
  x1    = (/0.005,0.15/)        ; Start and end X
forrest@0
   136
  y1    = (/0.900,0.995/)       ; Start and end Y
forrest@0
   137
  text1 = table_header_name
forrest@0
   138
  res1               = True
forrest@0
   139
  res1@txFontHeightF = 0.03
forrest@0
   140
  res1@gsFillColor   = "CornFlowerBlue"
forrest@0
   141
forrest@0
   142
; Column header (equally space in x2)
forrest@0
   143
  ncr2  = (/1,ncol_zone/)         ; 1 rows, 5 columns
forrest@0
   144
  x2    = (/x1(1),0.995/)          ; start from end of x1
forrest@0
   145
  y2    = y1                      ; same as y1
forrest@0
   146
  text2 = col_header_zone
forrest@0
   147
  res2               = True
forrest@0
   148
  res2@txFontHeightF = 0.015
forrest@0
   149
  res2@gsFillColor   = "Gray"
forrest@0
   150
forrest@0
   151
; Row header (equally space in y2)
forrest@0
   152
  ncr3  = (/nrow_zone,1/)         ; 5 rows, 1 columns
forrest@0
   153
  x3    = x1                      ; same as x1
forrest@0
   154
  y3    = (/1.0-table_length_zone,0.900/) ; end at start of y1
forrest@0
   155
  text3 = row_header_zone
forrest@0
   156
  res3               = True
forrest@0
   157
  res3@txFontHeightF = 0.02
forrest@0
   158
  res3@gsFillColor   = "Gray"
forrest@0
   159
forrest@0
   160
; Main table body
forrest@0
   161
  ncr4  = (/nrow_zone,ncol_zone/) ; 5 rows, 5 columns
forrest@0
   162
  x4    = x2                      ; Start and end x
forrest@0
   163
  y4    = y3                      ; Start and end Y
forrest@0
   164
  text4 = new((/nrow_zone,ncol_zone/),string)
forrest@0
   165
forrest@0
   166
  color_fill4      = new((/nrow_zone,ncol_zone/),string)
forrest@0
   167
  color_fill4      = "white"
forrest@0
   168
  color_fill4(:,ncol_zone-1) = "grey"
forrest@0
   169
forrest@0
   170
  res4               = True       ; Set up resource list
forrest@0
   171
; res4@gsnDebug      = True       ; Useful to print NDC row,col values used.
forrest@0
   172
  res4@txFontHeightF = 0.02
forrest@0
   173
  res4@gsFillColor   = color_fill4
forrest@0
   174
forrest@0
   175
  delete (color_fill4)
forrest@0
   176
forrest@0
   177
;*******************************************************************
forrest@0
   178
; for table -- station
forrest@0
   179
;*******************************************************************
forrest@0
   180
; column (not including header column)
forrest@0
   181
  col_header_sta = (/"Latitude","Longitude","Amplitude Ratio", \
forrest@0
   182
                      "Correlation Coef","M score","Combined Score"/)
forrest@0
   183
  ncol_sta       = dimsizes(col_header_sta ) 
forrest@0
   184
;-------------------------------------------------------------------
forrest@0
   185
forrest@0
   186
; Table header
forrest@0
   187
  ncr5  = (/1,1/)               ; 1 row, 1 column
forrest@0
   188
  x5    = (/0.005,0.15/)        ; Start and end X
forrest@0
   189
  y5    = (/0.900,0.995/)       ; Start and end Y
forrest@0
   190
  res5               = True
forrest@0
   191
  res5@txFontHeightF = 0.02
forrest@0
   192
  res5@gsFillColor   = "CornFlowerBlue"
forrest@0
   193
forrest@0
   194
; Column header (equally space in x2)
forrest@0
   195
  ncr6  = (/1,ncol_sta/)         ; 1 rows, 5 columns
forrest@0
   196
  x6    = (/x5(1),0.995/)          ; start from end of x1
forrest@0
   197
  y6    = y5                      ; same as y1
forrest@0
   198
  text6 = col_header_sta
forrest@0
   199
  res6               = True
forrest@0
   200
  res6@txFontHeightF = 0.012
forrest@0
   201
  res6@gsFillColor   = "Gray"
forrest@0
   202
forrest@0
   203
; Row header (equally space in y2)
forrest@0
   204
forrest@0
   205
  res7               = True
forrest@0
   206
  res7@txFontHeightF = 0.015
forrest@0
   207
  res7@gsFillColor   = "Gray"
forrest@0
   208
;--------------------------------------------------------------
forrest@0
   209
; for station line plot
forrest@0
   210
forrest@0
   211
; for x-axis in xyplot
forrest@0
   212
  mon = ispan(1,12,1)
forrest@0
   213
  mon@long_name = "month"
forrest@0
   214
forrest@0
   215
  plot_type = "ps"
forrest@0
   216
  plot_type_new = "png"
forrest@0
   217
forrest@0
   218
  res                   = True                      ; plot mods desired
forrest@0
   219
  res@xyLineThicknesses = (/2.0,2.0,2.0/)           ; make 2nd lines thicker
forrest@0
   220
  res@xyLineColors      = (/"red","black"/)  ; change line color
forrest@0
   221
forrest@0
   222
; Add a boxed legend using the more simple method
forrest@0
   223
forrest@0
   224
  res@pmLegendDisplayMode    = "Always"
forrest@0
   225
; res@pmLegendWidthF         = 0.1
forrest@0
   226
  res@pmLegendWidthF         = 0.08
forrest@0
   227
  res@pmLegendHeightF        = 0.06
forrest@0
   228
; res@pmLegendOrthogonalPosF = -1.17
forrest@0
   229
; res@pmLegendOrthogonalPosF = -1.00  ;(downward)
forrest@0
   230
  res@pmLegendOrthogonalPosF = -0.30  ;(downward)
forrest@0
   231
forrest@0
   232
; res@pmLegendParallelPosF   =  0.18
forrest@0
   233
  res@pmLegendParallelPosF   =  0.23  ;(rightward)
forrest@0
   234
forrest@0
   235
; res@lgPerimOn             = False
forrest@0
   236
  res@lgLabelFontHeightF     = 0.015
forrest@0
   237
  res@xyExplicitLegendLabels = (/"b30.061n","observed"/)
forrest@0
   238
;-------------------------------------------------------------------
forrest@0
   239
forrest@0
   240
  do z = 0,nzone-1
forrest@0
   241
forrest@0
   242
  if (z .eq. 0) then 
forrest@0
   243
;    maximum score for the zone, 60N-90N
forrest@0
   244
     zone = "60N-90N" 
forrest@0
   245
     score_max = 5.0
forrest@0
   246
;    index of stations in this zone
forrest@0
   247
     ind_z = ind(lat_ob .ge. 60.)
forrest@0
   248
;    print (ind_z)
forrest@0
   249
;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
forrest@0
   250
;    print (val_ob(ind_z,:))
forrest@0
   251
;    print (val_model(ind_z,:))
forrest@0
   252
  end if
forrest@0
   253
forrest@0
   254
  if (z .eq. 1) then 
forrest@0
   255
;    maximum score for the zone, 30N-60N
forrest@0
   256
     zone = "30N-60N" 
forrest@0
   257
     score_max = 5.0
forrest@0
   258
;    index of stations in this zone
forrest@0
   259
     ind_z = ind(lat_ob .ge. 30. .and. lat_ob .lt. 60.)
forrest@0
   260
;    print (ind_z)
forrest@0
   261
;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
forrest@0
   262
;    print (val_ob(ind_z,:))
forrest@0
   263
;    print (val_model(ind_z,:))
forrest@0
   264
  end if
forrest@0
   265
forrest@0
   266
  if (z .eq. 2) then 
forrest@0
   267
;    maximum score for the zone, EQ-30N 
forrest@0
   268
     zone = "EQ-30N"
forrest@0
   269
     score_max = 5.0
forrest@0
   270
;    index of stations in this zone
forrest@0
   271
     ind_z = ind(lat_ob .ge. 0. .and. lat_ob .lt. 30.)
forrest@0
   272
;    print (ind_z)
forrest@0
   273
;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
forrest@0
   274
;    print (val_ob(ind_z,:))
forrest@0
   275
;    print (val_model(ind_z,:))
forrest@0
   276
  end if
forrest@0
   277
forrest@0
   278
  if (z .eq. 3) then 
forrest@0
   279
;    maximum score for the zone, 90S-EQ
forrest@0
   280
     zone = "90S-EQ" 
forrest@0
   281
     score_max = 5.0
forrest@0
   282
;    index of stations in this zone
forrest@0
   283
     ind_z = ind(lat_ob .lt. 0. )
forrest@0
   284
;    print (ind_z)
forrest@0
   285
;    print (lat_ob(ind_z)+"/"+lon_ob(ind_z))
forrest@0
   286
;    print (val_ob(ind_z,:))
forrest@0
   287
;    print (val_model(ind_z,:))
forrest@0
   288
  end if
forrest@0
   289
forrest@0
   290
 npts = dimsizes(ind_z)
forrest@0
   291
 print (npts)
forrest@0
   292
;-------------------------------------------------------------------------
forrest@0
   293
; for metric table computation
forrest@0
   294
forrest@0
   295
 amp_ob        = new((/npts/),float)
forrest@0
   296
 amp_model     = new((/npts/),float)
forrest@0
   297
forrest@0
   298
 amp_ratio_sta = new((/npts/),float)
forrest@0
   299
 ccr_sta       = new((/npts/),float)
forrest@0
   300
 M_sta         = new((/npts/),float)
forrest@0
   301
 score_sta     = new((/npts/),float)
forrest@0
   302
forrest@0
   303
;----------------------
forrest@0
   304
; for table -- station
forrest@0
   305
;----------------------
forrest@0
   306
forrest@0
   307
; row (not including header row)  
forrest@0
   308
  nrow_sta       = npts                  
forrest@0
   309
forrest@0
   310
; Table header
forrest@0
   311
  ncr5  = (/1,1/)               ; 1 row, 1 column
forrest@0
   312
  x5    = (/0.005,0.15/)        ; Start and end X
forrest@0
   313
  y5    = (/0.900,0.995/)       ; Start and end Y
forrest@0
   314
  res5               = True
forrest@0
   315
  res5@txFontHeightF = 0.02
forrest@0
   316
  res5@gsFillColor   = "CornFlowerBlue"
forrest@0
   317
forrest@0
   318
; Column header (equally space in x2)
forrest@0
   319
  ncr6  = (/1,ncol_sta/)         ; 1 rows, 5 columns
forrest@0
   320
  x6    = (/x1(1),0.995/)          ; start from end of x1
forrest@0
   321
  y6    = y1                      ; same as y1
forrest@0
   322
  text6 = col_header_sta
forrest@0
   323
  res6               = True
forrest@0
   324
  res6@txFontHeightF = 0.012
forrest@0
   325
  res6@gsFillColor   = "Gray"
forrest@0
   326
forrest@0
   327
; Row header (equally space in y2)
forrest@0
   328
  ncr7  = (/nrow_sta,1/)         ; 5 rows, 1 columns
forrest@0
   329
  x7    = x1                      ; same as x1
forrest@0
   330
; y7    = (/1.0-table_length_sta,0.900/) ; end at start of y1
forrest@0
   331
  text7 = new((/nrow_sta/),string)
forrest@0
   332
  res7               = True
forrest@0
   333
  res7@txFontHeightF = 0.015
forrest@0
   334
  res7@gsFillColor   = "Gray"
forrest@0
   335
;-------------------------------------------------------------------------
forrest@0
   336
; for station line plot
forrest@0
   337
forrest@0
   338
  npts_str = ""
forrest@0
   339
  npts_str = npts
forrest@0
   340
; print (npts_str)
forrest@0
   341
forrest@0
   342
  plot_data   = new((/2,12,npts/),float)
forrest@0
   343
  plot_data_0 = new((/12,npts/),float)
forrest@0
   344
forrest@0
   345
  plot_data!0 = "case"
forrest@0
   346
  plot_data!1 = "month"
forrest@0
   347
  plot_data!2 = "pts"
forrest@0
   348
  plot_data@long_name   = "CO2 Seasonal"
forrest@0
   349
forrest@0
   350
  plot_data_0!0 = "month"
forrest@0
   351
  plot_data_0!1 = "pts"
forrest@0
   352
  plot_data_0@long_name = "CO2"
forrest@0
   353
;--------------------------------------------------------------------------
forrest@0
   354
 do n=0,npts-1
forrest@0
   355
    amp_ob(n)    = max(val_ob(ind_z(n),:)) - min(val_ob(ind_z(n),:)) 
forrest@0
   356
    amp_model(n) = max(val_model(ind_z(n),:)) - min(val_model(ind_z(n),:))
forrest@0
   357
forrest@0
   358
    amp_ratio_sta(n) = amp_model(n)/amp_ob(n)
forrest@0
   359
    ccr_sta(n) = esccr(val_ob(ind_z(n),:),val_model(ind_z(n),:),0)
forrest@0
   360
    M_sta(n) = 1.-abs(amp_ratio_sta(n)-1.)
forrest@0
   361
    score_sta(n) = (ccr_sta(n)*ccr_sta(n) + M_sta(n))*0.5 * score_max
forrest@0
   362
forrest@0
   363
    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))
forrest@0
   364
;----------------------------------------------------------------------
forrest@0
   365
; for station line plot
forrest@0
   366
forrest@0
   367
    plot_data(0,:,n) = (/val_model(ind_z(n),:)/)
forrest@0
   368
    plot_data(1,:,n) = (/val_ob(ind_z(n),:)/)
forrest@0
   369
forrest@0
   370
    plot_data_0(:,n) = (/val_model_0(ind_z(n),:)/)
forrest@0
   371
   
forrest@0
   372
    plot_name = sta(ind_z(n))    
forrest@0
   373
    title = plot_name+"("+lat(ind_z(n))+","+lon(ind_z(n))+")"
forrest@0
   374
;   print (title)
forrest@0
   375
;   print (plot_name)
forrest@0
   376
forrest@0
   377
    wks = gsn_open_wks (plot_type,plot_name)   ; open workstation
forrest@0
   378
;------------------------------------------
forrest@0
   379
;   for panel plot
forrest@0
   380
   
forrest@0
   381
    plot=new(2,graphic)                        ; create graphic array
forrest@0
   382
    res@gsnFrame     = False                   ; Do not draw plot 
forrest@0
   383
    res@gsnDraw      = False                   ; Do not advance frame
forrest@0
   384
forrest@0
   385
    pres                            = True     ; panel plot mods desired
forrest@0
   386
    pres@gsnPanelYWhiteSpacePercent = 5        ; increase white space around
forrest@0
   387
                                               ; indiv. plots in panel
forrest@0
   388
    pres@gsnMaximize                = True     ; fill the page
forrest@0
   389
;------------------------------------------
forrest@0
   390
    res@tiMainString = title                           ; add title
forrest@0
   391
forrest@0
   392
    plot(0)=gsn_csm_xy(wks,mon,plot_data(:,:,n),res)   ; create plot 1
forrest@0
   393
forrest@0
   394
    plot(1)=gsn_csm_xy(wks,mon,plot_data_0(:,n),res) ; create plot 2
forrest@0
   395
forrest@0
   396
    gsn_panel(wks,plot,(/2,1/),pres)                 ; create panel plot
forrest@0
   397
forrest@0
   398
    system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new)
forrest@0
   399
    system("rm "+plot_name+"."+plot_type)
forrest@0
   400
    clear (wks)
forrest@0
   401
;---------------------------------------------------------------------------  
forrest@0
   402
 end do
forrest@0
   403
;-------------------------------------------------------------------------
forrest@0
   404
;   for line plot in a zone
forrest@0
   405
forrest@0
   406
    plot_name = "All_"+npts_str
forrest@0
   407
    title = plot_name + " in "+ zone
forrest@0
   408
;   print (title)
forrest@0
   409
;   print (plot_name)
forrest@0
   410
forrest@0
   411
    wks = gsn_open_wks (plot_type,plot_name)        ; open workstation
forrest@0
   412
;-----------------------------------------
forrest@0
   413
;   for panel plot
forrest@0
   414
   
forrest@0
   415
    plot=new(2,graphic)                        ; create graphic array
forrest@0
   416
    res@gsnFrame     = False                   ; Do not draw plot 
forrest@0
   417
    res@gsnDraw      = False                   ; Do not advance frame
forrest@0
   418
forrest@0
   419
    pres                            = True     ; panel plot mods desired
forrest@0
   420
    pres@gsnPanelYWhiteSpacePercent = 5        ; increase white space around
forrest@0
   421
                                               ; indiv. plots in panel
forrest@0
   422
    pres@gsnMaximize                = True     ; fill the page
forrest@0
   423
;-----------------------------------------
forrest@0
   424
    res@tiMainString = title                                     ; add title
forrest@0
   425
forrest@0
   426
    plot(0) = gsn_csm_xy (wks,mon,dim_avg_Wrap(plot_data),res)   ; create plot 1
forrest@0
   427
    
forrest@0
   428
    plot(1) = gsn_csm_xy (wks,mon,dim_avg_Wrap(plot_data_0),res) ; create plot 2
forrest@0
   429
forrest@0
   430
    gsn_panel(wks,plot,(/2,1/),pres)                 ; create panel plot
forrest@0
   431
forrest@0
   432
    system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new)
forrest@0
   433
    system("rm "+plot_name+"."+plot_type)
forrest@0
   434
forrest@0
   435
    clear (wks)
forrest@0
   436
;   delete (ind_z)
forrest@0
   437
    delete (plot_data)
forrest@0
   438
    delete (plot_data_0)    
forrest@0
   439
;---------------------------------------------------------------------------
forrest@0
   440
; for zone table value
forrest@0
   441
forrest@0
   442
 amp_ratio_zone = avg(amp_ratio_sta)
forrest@0
   443
 ccr_zone       = avg(ccr_sta)
forrest@0
   444
 M_zone   = 1.- (sum(abs(amp_model-amp_ob)/(amp_model+amp_ob))/npts) 
forrest@0
   445
 score_zone   = (ccr_zone*ccr_zone + M_zone)*0.5 * score_max
forrest@0
   446
forrest@0
   447
 print (npts+"/"+amp_ratio_zone+"/"+ccr_zone+"/"+M_zone+"/"+score_zone)
forrest@0
   448
forrest@0
   449
  text4(z,0) = sprintf("%5.2f", npts)
forrest@0
   450
  text4(z,1) = sprintf("%5.2f", amp_ratio_zone)
forrest@0
   451
  text4(z,2) = sprintf("%5.2f", ccr_zone)
forrest@0
   452
  text4(z,3) = sprintf("%5.2f", M_zone)
forrest@0
   453
  text4(z,4) = sprintf("%5.2f", score_zone)  
forrest@0
   454
;---------------------------------------------------------------------------
forrest@0
   455
; plot station table
forrest@0
   456
;----------------------------------
forrest@0
   457
; header value for station table
forrest@0
   458
  text5  = zone 
forrest@0
   459
forrest@0
   460
; row value for station table 
forrest@0
   461
  text7  = sta(ind_z)
forrest@0
   462
forrest@0
   463
  if (z .eq. 0) then
forrest@0
   464
     table_length_sta = 0.5
forrest@0
   465
  end if
forrest@0
   466
  if (z .eq. 1) then
forrest@0
   467
     table_length_sta = 0.995
forrest@0
   468
  end if
forrest@0
   469
  if (z .eq. 2) then
forrest@0
   470
     table_length_sta = 0.8
forrest@0
   471
  end if
forrest@0
   472
  if (z .eq. 3) then
forrest@0
   473
     table_length_sta = 0.8
forrest@0
   474
  end if    
forrest@0
   475
forrest@0
   476
  x7 = x5   
forrest@0
   477
  y7 = (/1.0-table_length_sta,0.900/) ; end at start of y1
forrest@0
   478
forrest@0
   479
; Main table body
forrest@0
   480
  ncr8  = (/nrow_sta,ncol_sta/) ; 5 rows, 5 columns
forrest@0
   481
  x8    = x6                      ; Start and end x
forrest@0
   482
  y8    = y7                      ; Start and end Y
forrest@0
   483
  text8 = new((/nrow_sta,ncol_sta/),string)
forrest@0
   484
forrest@0
   485
  color_fill8      = text8
forrest@0
   486
  color_fill8      = "white"
forrest@0
   487
  color_fill8(:,ncol_sta-1) = "grey"
forrest@0
   488
forrest@0
   489
  res8               = True       ; Set up resource list
forrest@0
   490
  res8@gsnDebug      = True       ; Useful to print NDC row,col values used.
forrest@0
   491
  res8@txFontHeightF = 0.02
forrest@0
   492
  res8@gsFillColor   = color_fill8
forrest@0
   493
forrest@0
   494
  delete (color_fill8)
forrest@0
   495
forrest@0
   496
; table value for station table
forrest@0
   497
  text8(:,0) = sprintf("%5.2f", (/lat(ind_z)/))
forrest@0
   498
  text8(:,1) = sprintf("%5.2f", (/lon(ind_z)/))
forrest@0
   499
  text8(:,2) = sprintf("%5.2f", (/amp_ratio_sta/))
forrest@0
   500
  text8(:,3) = sprintf("%5.2f", (/ccr_sta/))
forrest@0
   501
  text8(:,4) = sprintf("%5.2f", (/M_sta/))
forrest@0
   502
  text8(:,5) = sprintf("%5.2f", (/score_sta/))
forrest@0
   503
 
forrest@0
   504
  plot_name = "table_sta." + zone 
forrest@0
   505
  
forrest@0
   506
  wks = gsn_open_wks (plot_type,plot_name)   ; open workstation
forrest@0
   507
forrest@0
   508
  gsn_table(wks,ncr5,x5,y5,text5,res5)
forrest@0
   509
  gsn_table(wks,ncr6,x6,y6,text6,res6)
forrest@0
   510
  gsn_table(wks,ncr7,x7,y7,text7,res7)
forrest@0
   511
  gsn_table(wks,ncr8,x8,y8,text8,res8) 
forrest@0
   512
forrest@0
   513
  frame(wks)
forrest@0
   514
forrest@0
   515
  system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new)
forrest@0
   516
  system("rm "+plot_name+"."+plot_type)
forrest@0
   517
forrest@0
   518
 delete (ind_z)
forrest@0
   519
 delete (amp_model)
forrest@0
   520
 delete (amp_ob)
forrest@0
   521
 delete (amp_ratio_sta)
forrest@0
   522
 delete (ccr_sta)
forrest@0
   523
 delete (M_sta)
forrest@0
   524
 delete (score_sta)
forrest@0
   525
 delete (text7)
forrest@0
   526
 delete (text8)
forrest@0
   527
 delete (res7)
forrest@0
   528
 delete (res8)
forrest@0
   529
 clear (wks)
forrest@0
   530
 end do
forrest@0
   531
;**************************************************
forrest@0
   532
; plot zone table
forrest@0
   533
;**************************************************
forrest@0
   534
 
forrest@0
   535
  text4(4,0) = sum(stringtofloat(text4(0:3,0))) 
forrest@0
   536
  text4(4,1) = 0.
forrest@0
   537
  text4(4,2) = 0.
forrest@0
   538
  text4(4,3) = 0.
forrest@0
   539
  text4(4,4) = sum(stringtofloat(text4(0:3,4)))
forrest@0
   540
forrest@0
   541
  plot_name = "table_zone" 
forrest@0
   542
  wks = gsn_open_wks (plot_type,plot_name)   ; open workstation
forrest@0
   543
forrest@0
   544
  gsn_table(wks,ncr1,x1,y1,text1,res1)
forrest@0
   545
  gsn_table(wks,ncr2,x2,y2,text2,res2)
forrest@0
   546
  gsn_table(wks,ncr3,x3,y3,text3,res3)
forrest@0
   547
  gsn_table(wks,ncr4,x4,y4,text4,res4) 
forrest@0
   548
forrest@0
   549
  frame(wks)
forrest@0
   550
forrest@0
   551
  system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new)
forrest@0
   552
  system("rm "+plot_name+"."+plot_type)
forrest@0
   553
;-------------------------------------------------------------------
forrest@0
   554
  system("mkdir temp")
forrest@0
   555
  system("mv *.png temp")
forrest@0
   556
  system("tar cf temp.tar temp")
forrest@0
   557
;------------------------------------------------------------------- 
forrest@0
   558
end