ameriflux/25.plot.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
; change data name to timeseries_L4_m.nc
forrest@0
     3
; move data
forrest@0
     4
; merge annual
forrest@0
     5
; add table
forrest@0
     6
; add time series plot
forrest@0
     7
; sort by latitude in decending order (N->S)
forrest@0
     8
; find year_ob >= 4
forrest@0
     9
; add year_ob_i and year_ob_f
forrest@0
    10
; change long_name
forrest@0
    11
;************************************************************
forrest@0
    12
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
forrest@0
    13
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
forrest@0
    14
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
forrest@0
    15
;************************************************************
forrest@0
    16
procedure set_line(lines:string,nline:integer,newlines:string) 
forrest@0
    17
begin
forrest@0
    18
; add line to ascci/html file
forrest@0
    19
    
forrest@0
    20
  nnewlines = dimsizes(newlines)
forrest@0
    21
  if(nline+nnewlines-1.ge.dimsizes(lines))
forrest@0
    22
    print("set_line: bad index, not setting anything.") 
forrest@0
    23
    return
forrest@0
    24
  end if 
forrest@0
    25
  lines(nline:nline+nnewlines-1) = newlines
forrest@0
    26
;  print ("lines = " + lines(nline:nline+nnewlines-1))
forrest@0
    27
  nline = nline + nnewlines
forrest@0
    28
  return 
forrest@0
    29
end
forrest@0
    30
;*************************************************************
forrest@0
    31
begin
forrest@0
    32
forrest@0
    33
  plot_type     = "ps"
forrest@0
    34
  plot_type_new = "png"
forrest@0
    35
forrest@0
    36
;************************************************
forrest@0
    37
; model data info
forrest@0
    38
;************************************************
forrest@0
    39
  model = "cn"
forrest@0
    40
; model = "casa"
forrest@0
    41
  
forrest@0
    42
  model_name = "i01.10" + model
forrest@0
    43
  
forrest@0
    44
  ENERGY ="new"
forrest@0
    45
forrest@0
    46
  nmonth = 12
forrest@0
    47
forrest@0
    48
; for nee, gpp, and ar
forrest@0
    49
; observed unit is gC/m2/day
forrest@0
    50
; model    unit is gC/m2/s
forrest@0
    51
; to change to observed unit,
forrest@0
    52
forrest@0
    53
  factor_flux = 86400.
forrest@0
    54
  
forrest@0
    55
; for incident solar radiation,
forrest@0
    56
; observed Rg_f unit is MJ/m2/day
forrest@0
    57
; model (FSDS)  unit is  W/m2
forrest@0
    58
; to change to model unit,
forrest@0
    59
forrest@0
    60
  factor_rad = 1.e6/86400.
forrest@0
    61
forrest@0
    62
; model    unit is gC/m2/s
forrest@0
    63
; change to unit of observed (u mol/m2/s)
forrest@0
    64
; 12. = molecular weight of C
forrest@0
    65
; u mol = 1e-6 mol
forrest@0
    66
; factor_flux = 1.e6 /12.
forrest@0
    67
forrest@0
    68
;************************************************
forrest@0
    69
; observed data info
forrest@0
    70
;************************************************
forrest@0
    71
forrest@0
    72
 station = (/"ARM_Oklahoma" \
forrest@0
    73
            ,"ARM_Oklahoma_burn" \
forrest@0
    74
            ,"ARM_Oklahoma_control" \
forrest@0
    75
            ,"Atqasuk" \
forrest@0
    76
            ,"Audubon" \
forrest@0
    77
            ,"AustinCary" \
forrest@0
    78
            ,"Bartlett" \
forrest@0
    79
            ,"Bondville" \
forrest@0
    80
            ,"Brookings" \
forrest@0
    81
            ,"Donaldson" \
forrest@0
    82
            ,"Duke_Forest_Hardwoods" \
forrest@0
    83
            ,"Duke_Forest_Open_Field" \
forrest@0
    84
            ,"Duke_Forest_Pine" \
forrest@0
    85
            ,"Fermi_Ag" \
forrest@0
    86
            ,"Fermi_Prairie" \
forrest@0
    87
            ,"Flagstaff_Managed" \
forrest@0
    88
            ,"Flagstaff_Unmanaged" \
forrest@0
    89
            ,"Flagstaff_Wildfire" \
forrest@0
    90
            ,"FortPeck" \
forrest@0
    91
            ,"FreemanRanch_mesquite" \
forrest@0
    92
            ,"Goodwin_Creek" \
forrest@0
    93
            ,"HarvardForest" \
forrest@0
    94
            ,"HarvardForestHemlock" \
forrest@0
    95
            ,"HowlandForestMain" \
forrest@0
    96
            ,"HowlandForestWest" \
forrest@0
    97
            ,"Ivotuk" \
forrest@0
    98
            ,"KendallGrasslands" \
forrest@0
    99
            ,"KennedySpaceCenterPine" \
forrest@0
   100
            ,"KennedySpaceCenterScrub" \
forrest@0
   101
            ,"LittleProspect" \
forrest@0
   102
            ,"LostCreek" \
forrest@0
   103
            ,"Mead-irrigated" \
forrest@0
   104
            ,"Mead-irrigated-rotation" \
forrest@0
   105
            ,"Mead-rainfed" \
forrest@0
   106
            ,"Metolius_2nd_YoungPonderosaPine" \
forrest@0
   107
            ,"MetoliusEyerly" \
forrest@0
   108
            ,"MetoliusIntermediatePine" \
forrest@0
   109
            ,"MetoliusOldPonderosaPine" \
forrest@0
   110
            ,"MissouriOzark" \
forrest@0
   111
            ,"Mize" \
forrest@0
   112
            ,"MorganMonroe" \
forrest@0
   113
            ,"NiwotRidge" \
forrest@0
   114
            ,"NorthCarolina_cc" \
forrest@0
   115
            ,"NorthCarolina_lp" \
forrest@0
   116
            ,"ParkFalls" \
forrest@0
   117
            ,"Rayonier" \
forrest@0
   118
            ,"SantaRita" \
forrest@0
   119
            ,"SkyOaks_Old" \
forrest@0
   120
            ,"SkyOaks_PostFire" \
forrest@0
   121
            ,"SkyOaks_Young" \
forrest@0
   122
            ,"SylvaniaWilderness" \
forrest@0
   123
            ,"Toledo" \
forrest@0
   124
            ,"Tonzi" \
forrest@0
   125
            ,"UCI_1850" \
forrest@0
   126
            ,"UCI_1930" \
forrest@0
   127
            ,"UCI_1964" \
forrest@0
   128
            ,"UCI_1964wet" \
forrest@0
   129
            ,"UCI_1981" \
forrest@0
   130
            ,"UCI_1989" \
forrest@0
   131
            ,"UCI_1998" \
forrest@0
   132
            ,"UMBS" \
forrest@0
   133
            ,"Vaira" \
forrest@0
   134
            ,"WalkerBranch" \
forrest@0
   135
            ,"WillowCreek" \
forrest@0
   136
            ,"WindRiver" \
forrest@0
   137
            ,"Wisconsin_ihw" \
forrest@0
   138
            ,"Wisconsin_irp" \
forrest@0
   139
            ,"Wisconsin_mrp" \
forrest@0
   140
            ,"Wisconsin_myjp" \
forrest@0
   141
            ,"Wisconsin_pb" \
forrest@0
   142
            ,"Wisconsin_rpcc" \
forrest@0
   143
            ,"Wisconsin_yhw" \
forrest@0
   144
            ,"Wisconsin_yjp" \
forrest@0
   145
            ,"Wisconsin_yrp" \
forrest@0
   146
            /)
forrest@0
   147
forrest@0
   148
 field   = (/"NEE Flux" \
forrest@0
   149
            ,"Shortwave Incoming" \
forrest@0
   150
            ,"Latent Heat" \
forrest@0
   151
            ,"Sensible Heat" \
forrest@0
   152
            ,"GPP Flux" \
forrest@0
   153
            ,"Respiration" \
forrest@0
   154
            /)
forrest@0
   155
forrest@0
   156
 field_unit = (/"gC/m2/day" \
forrest@0
   157
               ,"W/m2" \
forrest@0
   158
               ,"W/m2" \
forrest@0
   159
               ,"W/m2" \
forrest@0
   160
               ,"gC/m2/day" \
forrest@0
   161
               ,"gC/m2/day" \
forrest@0
   162
               /)
forrest@0
   163
forrest@0
   164
 nstation = dimsizes(station)
forrest@0
   165
 nfield   = dimsizes(field)
forrest@0
   166
forrest@0
   167
;========================================================================
forrest@0
   168
; get observed info: number of year, first/last year, lat, lon
forrest@0
   169
; and annual data
forrest@0
   170
forrest@0
   171
 dir_root = "/fis/cgd/cseg/people/jeff/clamp_data/observed/ameriflux/"
forrest@0
   172
forrest@0
   173
 year_station = new ((/nstation/),integer) ; number of year
forrest@0
   174
 year_ob      = new ((/nstation/),string)  ; observed year
forrest@0
   175
 year_ob_i    = new ((/nstation/),integer) ; first year
forrest@0
   176
 year_ob_f    = new ((/nstation/),integer) ; last year
forrest@0
   177
 lat_ob       = new ((/nstation/),float)   ; latitude
forrest@0
   178
 lon_ob       = new ((/nstation/),float)   ; longitude 
forrest@0
   179
forrest@0
   180
 data_ob_ann  = new ((/nfield, nmonth, nstation/),float)
forrest@0
   181
forrest@0
   182
 do n = 0, nstation-1
forrest@0
   183
forrest@0
   184
    diro = dir_root + station(n)+"/"
forrest@0
   185
    filo = "timeseries_L4_m.nc"
forrest@0
   186
    fo   = addfile (diro+filo,"r")
forrest@0
   187
 
forrest@0
   188
    lat_ob(n) = fo->lat
forrest@0
   189
    lon_ob(n) = fo->lon
forrest@0
   190
forrest@0
   191
    year      = fo->year
forrest@0
   192
forrest@0
   193
    year_station(n) = dimsizes(year)
forrest@0
   194
    year_ob_i(n)    = year(0)
forrest@0
   195
    year_ob_f(n)    = year(year_station(n)-1)
forrest@0
   196
    year_ob(n)      = year_ob_i(n) + "-" + year_ob_f(n)
forrest@0
   197
 
forrest@0
   198
    delete (year)
forrest@0
   199
 
forrest@0
   200
    data = fo->NEE_or_fMDS
forrest@0
   201
    data_ob_ann(0,:,n) = dim_avg(data(month|:,year|:))
forrest@0
   202
forrest@0
   203
    data = fo->Rg_f
forrest@0
   204
    data_ob_ann(1,:,n) = dim_avg(data(month|:,year|:))*factor_rad
forrest@0
   205
forrest@0
   206
    data = fo->LE_f
forrest@0
   207
    data_ob_ann(2,:,n) = dim_avg(data(month|:,year|:))
forrest@0
   208
forrest@0
   209
    data = fo->H_f
forrest@0
   210
    data_ob_ann(3,:,n) = dim_avg(data(month|:,year|:))
forrest@0
   211
forrest@0
   212
    data = fo->GPP_or_MDS
forrest@0
   213
    data_ob_ann(4,:,n) = dim_avg(data(month|:,year|:))
forrest@0
   214
forrest@0
   215
    data = fo->Reco_or
forrest@0
   216
    data_ob_ann(5,:,n) = dim_avg(data(month|:,year|:))
forrest@0
   217
forrest@0
   218
    delete (data) 
forrest@0
   219
    delete (fo)   
forrest@0
   220
 end do
forrest@0
   221
forrest@0
   222
;print (year_ob_i)
forrest@0
   223
;print (year_ob_f)
forrest@0
   224
forrest@0
   225
;--------------------------------------------------------------
forrest@0
   226
; find (# of year observed) >=4 and year_ob_i <= 2001
forrest@0
   227
forrest@0
   228
 i_long_ob = ind(year_station .ge. 4 .and. year_ob_i .le. 2001)
forrest@0
   229
 
forrest@0
   230
 station_long      = station(i_long_ob)
forrest@0
   231
 lat_ob_long       = lat_ob(i_long_ob)
forrest@0
   232
 lon_ob_long       = lat_ob(i_long_ob)
forrest@0
   233
 year_ob_long      = year_ob(i_long_ob)
forrest@0
   234
 year_ob_i_long    = year_ob_i(i_long_ob)
forrest@0
   235
 year_ob_f_long    = year_ob_f(i_long_ob)
forrest@0
   236
 year_station_long = year_station(i_long_ob)
forrest@0
   237
forrest@0
   238
 nstation_long     = dimsizes(station_long)
forrest@0
   239
forrest@0
   240
; print (i_long_ob)
forrest@0
   241
; print (nstation_long)
forrest@0
   242
; print (station_long)
forrest@0
   243
; print (year_ob_i(i_long_ob))
forrest@0
   244
forrest@0
   245
;=========================================================
forrest@0
   246
;   get model data at observed lat-lon
forrest@0
   247
forrest@0
   248
    dirm = "/fis/cgd/cseg/people/jeff/clamp_data/model/"    
forrest@0
   249
    film = model_name+"_ameriflux_1990-2004_monthly.nc"
forrest@0
   250
    fm   = addfile (dirm+film,"r")
forrest@0
   251
forrest@0
   252
    xm   = fm->lon
forrest@0
   253
    ym   = fm->lat 
forrest@0
   254
    date = fm->date
forrest@0
   255
forrest@0
   256
    date_dim = dimsizes(date)
forrest@0
   257
    nyear  = date_dim(0)
forrest@0
   258
forrest@0
   259
    data_mod      = new ((/nfield,nyear,nmonth,nstation/),float)
forrest@0
   260
    data_mod_ann  = new ((/nfield,nmonth,nstation/),float)
forrest@0
   261
    data_mod_long = new ((/nfield,nyear,nmonth,nstation_long/),float)
forrest@0
   262
forrest@0
   263
;------------------------------------------------------------
forrest@0
   264
;   interpolate model data into observed station
forrest@0
   265
;   note: model is 0-360E, 90S-90N
forrest@0
   266
forrest@0
   267
;   to be able to handle observation at (-89.98,-24.80)
forrest@0
   268
    ym(0) = -90.
forrest@0
   269
;------------------------------------------------------------  
forrest@0
   270
forrest@0
   271
if (ENERGY .eq. "old") then
forrest@0
   272
forrest@0
   273
  data = fm->NEE
forrest@0
   274
  data_mod(0,:,:,:) = data(:,:,:) * factor
forrest@0
   275
forrest@0
   276
; data  = fm->LATENT
forrest@0
   277
  data1 = fm->FCEV
forrest@0
   278
  data2 = fm->FCTR
forrest@0
   279
  data3 = fm->FGEV
forrest@0
   280
  data_mod(2,:,:,:) = data1(:,:,:)+data2(:,:,:)+data3(:,:,:) 
forrest@0
   281
  delete (data1)
forrest@0
   282
  delete (data2)
forrest@0
   283
  delete (data3)
forrest@0
   284
forrest@0
   285
; data = fm->SENSIBLE
forrest@0
   286
  data  = fm->FSH
forrest@0
   287
  data_mod(3,:,:,:) = data(:,:,:) 
forrest@0
   288
forrest@0
   289
; data  = fm->NETRAD
forrest@0
   290
  data1 = fm->FSA
forrest@0
   291
  data2 = fm->FIRA
forrest@0
   292
  data_mod(1,:,:,:) = data1(:,:,:)-data2(:,:,:) 
forrest@0
   293
  delete (data1)
forrest@0
   294
  delete (data2)
forrest@0
   295
forrest@0
   296
else
forrest@0
   297
forrest@0
   298
  data = fm->NEE
forrest@0
   299
  yy = linint2_points_Wrap(xm,ym,data,True,lon_ob,lat_ob,0)
forrest@0
   300
  data_mod_ann(0,:,:)= dim_avg(yy(month|:,pts|:,year|:)) * factor_flux
forrest@0
   301
  data_mod(0,:,:,:) = yy(:,:,:) * factor_flux
forrest@0
   302
forrest@0
   303
; printVarSummary(yy)
forrest@0
   304
forrest@0
   305
; data = fm->NETRAD
forrest@0
   306
  data = fm->FSDS
forrest@0
   307
  yy = linint2_points_Wrap(xm,ym,data,True,lon_ob,lat_ob,0)
forrest@0
   308
  data_mod_ann(1,:,:)= dim_avg(yy(month|:,pts|:,year|:)) 
forrest@0
   309
  data_mod(1,:,:,:) = yy(:,:,:) 
forrest@0
   310
forrest@0
   311
  data = fm->LATENT
forrest@0
   312
  yy = linint2_points_Wrap(xm,ym,data,True,lon_ob,lat_ob,0)
forrest@0
   313
  data_mod_ann(2,:,:)= dim_avg(yy(month|:,pts|:,year|:)) 
forrest@0
   314
  data_mod(2,:,:,:) = yy(:,:,:) 
forrest@0
   315
forrest@0
   316
; data = fm->SENSIBLE
forrest@0
   317
  data = fm->FSH
forrest@0
   318
  yy = linint2_points_Wrap(xm,ym,data,True,lon_ob,lat_ob,0)
forrest@0
   319
  data_mod_ann(3,:,:)= dim_avg(yy(month|:,pts|:,year|:)) 
forrest@0
   320
  data_mod(3,:,:,:) = yy(:,:,:) 
forrest@0
   321
forrest@0
   322
end if
forrest@0
   323
forrest@0
   324
  data = fm->GPP
forrest@0
   325
  yy = linint2_points_Wrap(xm,ym,data,True,lon_ob,lat_ob,0)
forrest@0
   326
  data_mod_ann(4,:,:)= dim_avg(yy(month|:,pts|:,year|:)) * factor_flux
forrest@0
   327
  data_mod(4,:,:,:) = yy(:,:,:) * factor_flux 
forrest@0
   328
forrest@0
   329
  if (model .eq. "cn") then
forrest@0
   330
     data = fm->ER
forrest@0
   331
  else
forrest@0
   332
     data1 = fm->AR
forrest@0
   333
     data2 = fm->HR
forrest@0
   334
     data  = data1 + data2
forrest@0
   335
    
forrest@0
   336
     delete (data1)
forrest@0
   337
     delete (data2)
forrest@0
   338
  end if
forrest@0
   339
forrest@0
   340
  yy = linint2_points_Wrap(xm,ym,data,True,lon_ob,lat_ob,0)
forrest@0
   341
  data_mod_ann(5,:,:)= dim_avg(yy(month|:,pts|:,year|:)) * factor_flux
forrest@0
   342
  data_mod(5,:,:,:) = yy(:,:,:) * factor_flux
forrest@0
   343
forrest@0
   344
  data_mod_long(:,:,:,:) = data_mod(:,:,:,i_long_ob)
forrest@0
   345
forrest@0
   346
  delete (data_mod)
forrest@0
   347
  delete (fm) 
forrest@0
   348
  delete (data)
forrest@0
   349
  delete (yy)
forrest@0
   350
forrest@0
   351
;*******************************************************************
forrest@0
   352
; for station line plot
forrest@0
   353
;*******************************************************************
forrest@0
   354
forrest@0
   355
; for x-axis in xyplot
forrest@0
   356
  mon = ispan(1,12,1)
forrest@0
   357
  mon@long_name = "month"
forrest@0
   358
forrest@0
   359
  res                   = True               ; plot mods desired
forrest@0
   360
  res@xyLineThicknesses = (/2.0,2.0/)        ; make 2nd lines thicker
forrest@0
   361
  res@xyLineColors      = (/"blue","red"/)   ; line color (ob,model)
forrest@0
   362
forrest@0
   363
  res@tmXBFormat  = "f"                      ; not to add trailing zeros
forrest@0
   364
forrest@0
   365
;-------------------------------------------------------------------------
forrest@0
   366
; Add a boxed legend using the more simple method
forrest@0
   367
forrest@0
   368
  res@pmLegendDisplayMode    = "Always"
forrest@0
   369
; res@pmLegendWidthF         = 0.1
forrest@0
   370
  res@pmLegendWidthF         = 0.08
forrest@0
   371
  res@pmLegendHeightF        = 0.06
forrest@0
   372
; res@pmLegendOrthogonalPosF = -1.17
forrest@0
   373
; res@pmLegendOrthogonalPosF = -1.00  ;(downward)
forrest@0
   374
  res@pmLegendOrthogonalPosF = -0.30  ;(downward)
forrest@0
   375
forrest@0
   376
; res@pmLegendParallelPosF   =  0.18
forrest@0
   377
  res@pmLegendParallelPosF   =  0.23  ;(rightward)
forrest@0
   378
forrest@0
   379
; res@lgPerimOn             = False
forrest@0
   380
  res@lgLabelFontHeightF     = 0.015
forrest@0
   381
  res@xyExplicitLegendLabels = (/"observed",model_name/)
forrest@0
   382
;-------------------------------------------------------------------
forrest@0
   383
; for panel plot
forrest@0
   384
  res@gsnFrame     = False                   ; Do not draw plot 
forrest@0
   385
  res@gsnDraw      = False                   ; Do not advance frame
forrest@0
   386
forrest@0
   387
  pres                            = True     ; panel plot mods desired
forrest@0
   388
  pres@gsnPanelYWhiteSpacePercent = 5        ; increase white space around
forrest@0
   389
                                             ; indiv. plots in panel
forrest@0
   390
  pres@gsnMaximize                = True     ; fill the page
forrest@0
   391
;-------------------------------------------------------------------
forrest@0
   392
forrest@0
   393
;==============================================================
forrest@0
   394
; get ob data at each site with long observation
forrest@0
   395
forrest@0
   396
  dir_root = "/fis/cgd/cseg/people/jeff/clamp_data/observed/ameriflux/"
forrest@0
   397
forrest@0
   398
  do n = 0,nstation_long-1
forrest@0
   399
; do n = 0,0
forrest@0
   400
forrest@0
   401
    year_setback = 0
forrest@0
   402
forrest@0
   403
    nyear = year_station_long(n)
forrest@0
   404
forrest@0
   405
    if (year_ob_f_long(n).eq. 2006) then
forrest@0
   406
       year_setback = 2006 -2004
forrest@0
   407
    end if
forrest@0
   408
    if (year_ob_f_long(n).eq. 2005) then
forrest@0
   409
       year_setback = 2005 -2004
forrest@0
   410
    end if
forrest@0
   411
    
forrest@0
   412
    ntime = (nyear - year_setback) * nmonth
forrest@0
   413
forrest@0
   414
    data_ob   = new ((/nfield, nyear, nmonth/),float)
forrest@0
   415
forrest@0
   416
    diro = dir_root + station_long(n)+"/"
forrest@0
   417
    filo = "timeseries_L4_m.nc"
forrest@0
   418
    fo   = addfile (diro+filo,"r")
forrest@0
   419
forrest@0
   420
;   print (diro)
forrest@0
   421
;   print (filo)
forrest@0
   422
forrest@0
   423
    data_ob(0,:,:) = fo->NEE_or_fMDS
forrest@0
   424
    data_ob(1,:,:) = fo->Rg_f
forrest@0
   425
    data_ob(2,:,:) = fo->LE_f
forrest@0
   426
    data_ob(3,:,:) = fo->H_f
forrest@0
   427
    data_ob(4,:,:) = fo->GPP_or_MDS
forrest@0
   428
    data_ob(5,:,:) = fo->Reco_or
forrest@0
   429
forrest@0
   430
    data_ob(1,:,:) = data_ob(1,:,:) * factor_rad
forrest@0
   431
forrest@0
   432
    delete (fo)
forrest@0
   433
forrest@0
   434
    timeI = new((/ntime/),integer)
forrest@0
   435
    timeF = new((/ntime/),float)
forrest@0
   436
    timeI = ispan(1,ntime,1)
forrest@0
   437
    timeF = year_ob_i_long(n) + (timeI-1)/12.
forrest@0
   438
    timeF@long_name = "year" 
forrest@0
   439
forrest@0
   440
    plot_data = new((/2,ntime/),float)
forrest@0
   441
 
forrest@0
   442
;----------------------------
forrest@0
   443
; for model_vs_ob
forrest@0
   444
forrest@0
   445
    plot_name = station_long(n)+"_tseries_vs_ob"
forrest@0
   446
    title = station_long(n)+"("+sprintf("%5.2f",lat_ob_long(n))+","+sprintf("%5.2f",lon_ob_long(n))+")"    
forrest@0
   447
    res@tiMainString = title
forrest@0
   448
forrest@0
   449
    wks = gsn_open_wks (plot_type,plot_name)
forrest@0
   450
    plot=new(nfield,graphic)                         ; create graphic array   
forrest@0
   451
forrest@0
   452
    i_year_mod_i = year_ob_i_long(n) - 1990 
forrest@0
   453
    i_year_mod_f = i_year_mod_i + nyear - 1 - year_setback
forrest@0
   454
forrest@0
   455
    i_year_ob_f =  nyear - year_setback - 1 
forrest@0
   456
forrest@0
   457
;   print (nyear)
forrest@0
   458
;   print (i_year_ob_f)
forrest@0
   459
;   print (i_year_mod_i)
forrest@0
   460
;   print (i_year_mod_f)
forrest@0
   461
forrest@0
   462
    do i = 0,nfield-1                           
forrest@0
   463
       plot_data(0,:) = ndtooned(data_ob (i,0:i_year_ob_f,:))
forrest@0
   464
       plot_data(1,:) = ndtooned(data_mod_long(i,i_year_mod_i:i_year_mod_f,:,n))
forrest@0
   465
       plot_data@long_name = field(i)+" ("+field_unit(i)+")"   
forrest@0
   466
       plot(i)=gsn_csm_xy(wks,timeF,plot_data,res)            ; create plot 
forrest@0
   467
    end do
forrest@0
   468
   
forrest@0
   469
    gsn_panel(wks,plot,(/3,2/),pres)                    ; create panel plot
forrest@0
   470
forrest@0
   471
    system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new+";"+ \
forrest@0
   472
           "rm "+plot_name+"."+plot_type)
forrest@0
   473
forrest@0
   474
    clear (wks)  
forrest@0
   475
    delete (plot)
forrest@0
   476
forrest@0
   477
    delete (data_ob)
forrest@0
   478
    delete (timeI)    
forrest@0
   479
    delete (timeF)
forrest@0
   480
    delete (plot_data)
forrest@0
   481
forrest@0
   482
 end do
forrest@0
   483
forrest@0
   484
;###################################################################
forrest@0
   485
; for the following tables,
forrest@0
   486
; sort by latitude in decending order (N->S)
forrest@0
   487
forrest@0
   488
  isort = dim_pqsort(lat_ob_long,-1)
forrest@0
   489
forrest@0
   490
  station_sort = station_long(isort)
forrest@0
   491
  year_ob_sort = year_ob_long(isort)
forrest@0
   492
  lat_ob_sort  = lat_ob_long(isort)
forrest@0
   493
  lon_ob_sort  = lon_ob_long(isort)
forrest@0
   494
 
forrest@0
   495
; print(isort)
forrest@0
   496
; print(lat_ob_sort)
forrest@0
   497
forrest@0
   498
;*******************************************************************
forrest@0
   499
; html table of site: observed
forrest@0
   500
;*******************************************************************
forrest@0
   501
  output_html = "tseries_vs_ob.html"
forrest@0
   502
forrest@0
   503
  header = (/"<HTML>" \
forrest@0
   504
            ,"<HEAD>" \
forrest@0
   505
            ,"<TITLE>CLAMP metrics</TITLE>" \
forrest@0
   506
            ,"</HEAD>" \
forrest@0
   507
            ,"<H1>Timeseries at Site: "+model_name+" vs Observation</H1>" \
forrest@0
   508
            /) 
forrest@0
   509
  footer = "</HTML>"
forrest@0
   510
forrest@0
   511
  table_header = (/ \
forrest@0
   512
        "<table border=1 cellspacing=0 cellpadding=3 width=60%>" \
forrest@0
   513
       ,"<tr>" \
forrest@0
   514
       ,"   <th bgcolor=DDDDDD >Site Name</th>" \
forrest@0
   515
       ,"   <th bgcolor=DDDDDD >Latitude</th>" \
forrest@0
   516
       ,"   <th bgcolor=DDDDDD >Longitude</th>" \
forrest@0
   517
       ,"   <th bgcolor=DDDDDD >Observed</th>" \ 
forrest@0
   518
       ,"</tr>" \
forrest@0
   519
       /)
forrest@0
   520
  table_footer = "</table>"
forrest@0
   521
  row_header = "<tr>"
forrest@0
   522
  row_footer = "</tr>"
forrest@0
   523
forrest@0
   524
  lines = new(50000,string)
forrest@0
   525
  nline = 0
forrest@0
   526
forrest@0
   527
  set_line(lines,nline,header)
forrest@0
   528
  set_line(lines,nline,table_header)
forrest@0
   529
;-----------------------------------------------
forrest@0
   530
; row of table
forrest@0
   531
  
forrest@0
   532
  do n = 0,nstation_long-1
forrest@0
   533
forrest@0
   534
     set_line(lines,nline,row_header)
forrest@0
   535
forrest@0
   536
     txt0 = station_sort(n)
forrest@0
   537
     txt1 = sprintf("%5.2f", lat_ob_sort(n))
forrest@0
   538
     txt2 = sprintf("%5.2f", lon_ob_sort(n))
forrest@0
   539
     txt3 = year_ob_sort(n)
forrest@0
   540
forrest@0
   541
     set_line(lines,nline,"<th><a href="+txt0+"_tseries_vs_ob.png>"+txt0+"</a></th>")
forrest@0
   542
     set_line(lines,nline,"<th>"+txt1+"</th>")
forrest@0
   543
     set_line(lines,nline,"<th>"+txt2+"</th>")
forrest@0
   544
     set_line(lines,nline,"<th>"+txt3+"</th>")
forrest@0
   545
forrest@0
   546
     set_line(lines,nline,row_footer)
forrest@0
   547
  end do
forrest@0
   548
;-----------------------------------------------
forrest@0
   549
  set_line(lines,nline,table_footer)
forrest@0
   550
  set_line(lines,nline,footer) 
forrest@0
   551
forrest@0
   552
; Now write to an HTML file.
forrest@0
   553
  idx = ind(.not.ismissing(lines))
forrest@0
   554
  if(.not.any(ismissing(idx))) then
forrest@0
   555
    asciiwrite(output_html,lines(idx))
forrest@0
   556
  else
forrest@0
   557
   print ("error?")
forrest@0
   558
  end if
forrest@0
   559
  delete (idx)
forrest@0
   560
forrest@0
   561
  delete (isort)
forrest@0
   562
  delete (station_sort)
forrest@0
   563
  delete (year_ob_sort)
forrest@0
   564
  delete (lat_ob_sort)
forrest@0
   565
  delete (lon_ob_sort)
forrest@0
   566
forrest@0
   567
;************************************************************
forrest@0
   568
; compute annual cycle correlation coef and M score
forrest@0
   569
;************************************************************
forrest@0
   570
forrest@0
   571
 score_max = 1.
forrest@0
   572
forrest@0
   573
 ccr     = new ((/nstation, nfield/),float)
forrest@0
   574
 M_score = new ((/nstation, nfield/),float) 
forrest@0
   575
forrest@0
   576
 do n=0,nstation-1
forrest@0
   577
 do m=0,nfield-1   
forrest@0
   578
    ccr(n,m) = esccr(data_ob_ann(m,:,n),data_mod_ann(m,:,n),0)
forrest@0
   579
    bias = sum(abs(data_mod_ann(m,:,n)-data_ob_ann(m,:,n))/(abs(data_mod_ann(m,:,n))+abs(data_ob_ann(m,:,n))))
forrest@0
   580
    M_score(n,m) = (1. -(bias/nmonth)) * score_max
forrest@0
   581
 end do
forrest@0
   582
 end do
forrest@0
   583
forrest@0
   584
 M_co2 = avg(M_score(:,0))
forrest@0
   585
 M_rad = avg(M_score(:,1))
forrest@0
   586
 M_lh  = avg(M_score(:,2))
forrest@0
   587
 M_sh  = avg(M_score(:,3))
forrest@0
   588
 M_gpp = avg(M_score(:,4))
forrest@0
   589
 M_er  = avg(M_score(:,5))
forrest@0
   590
 M_all = M_co2+ M_rad +M_lh + M_sh + M_gpp + M_er
forrest@0
   591
forrest@0
   592
 M_energy_co2 = sprintf("%.2f", M_co2)
forrest@0
   593
 M_energy_rad = sprintf("%.2f", M_rad)
forrest@0
   594
 M_energy_lh  = sprintf("%.2f", M_lh )
forrest@0
   595
 M_energy_sh  = sprintf("%.2f", M_sh )
forrest@0
   596
 M_energy_gpp = sprintf("%.2f", M_gpp)
forrest@0
   597
 M_energy_er  = sprintf("%.2f", M_er )
forrest@0
   598
 M_energy_all = sprintf("%.2f", M_all)
forrest@0
   599
forrest@0
   600
;*******************************************************************
forrest@0
   601
; for station line plot
forrest@0
   602
;*******************************************************************
forrest@0
   603
forrest@0
   604
; for x-axis in xyplot
forrest@0
   605
  mon = ispan(1,12,1)
forrest@0
   606
  mon@long_name = "month"
forrest@0
   607
forrest@0
   608
;-------------------------------------------------------------------
forrest@0
   609
forrest@0
   610
  plot_data   = new((/2,nmonth/),float)
forrest@0
   611
  plot_data!0 = "case"
forrest@0
   612
  plot_data!1 = "month"
forrest@0
   613
forrest@0
   614
  do n = 0,nstation-1
forrest@0
   615
;----------------------------
forrest@0
   616
; for observed
forrest@0
   617
forrest@0
   618
    plot_name = station(n)+"_ob"    
forrest@0
   619
    title = station(n)+"("+sprintf("%5.2f",lat_ob(n))+","+sprintf("%5.2f",lon_ob(n))+")"
forrest@0
   620
    res@tiMainString = title
forrest@0
   621
forrest@0
   622
    wks = gsn_open_wks (plot_type,plot_name)
forrest@0
   623
    plot=new(nfield,graphic)                        ; create graphic array   
forrest@0
   624
forrest@0
   625
    do i = 0,nfield-1                           
forrest@0
   626
       plot_data(0,:) = (/data_ob_ann(i,:,n)/)
forrest@0
   627
       plot_data@long_name = field(i)+" ("+field_unit(i)+")"   
forrest@0
   628
       plot(i)=gsn_csm_xy(wks,mon,plot_data(0,:),res)    ; create plot 
forrest@0
   629
    end do
forrest@0
   630
forrest@0
   631
    gsn_panel(wks,plot,(/3,2/),pres)                 ; create panel plot
forrest@0
   632
forrest@0
   633
    system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new+";"+ \
forrest@0
   634
           "rm "+plot_name+"."+plot_type)
forrest@0
   635
forrest@0
   636
    clear (wks)  
forrest@0
   637
    delete (plot)
forrest@0
   638
;----------------------------
forrest@0
   639
; for model_vs_ob
forrest@0
   640
forrest@0
   641
    plot_name = station(n)+"_model_vs_ob"
forrest@0
   642
    title = station(n)+"("+sprintf("%5.2f",lat_ob(n))+","+sprintf("%5.2f",lon_ob(n))+")"    
forrest@0
   643
    res@tiMainString = title
forrest@0
   644
forrest@0
   645
    wks = gsn_open_wks (plot_type,plot_name)
forrest@0
   646
    plot=new(nfield,graphic)                         ; create graphic array   
forrest@0
   647
forrest@0
   648
    do i = 0,nfield-1                           
forrest@0
   649
       plot_data(0,:) = (/data_ob_ann(i,:,n)/)
forrest@0
   650
       plot_data(1,:) = (/data_mod_ann(i,:,n)/)
forrest@0
   651
       plot_data@long_name = field(i)+" ("+field_unit(i)+")"   
forrest@0
   652
       plot(i)=gsn_csm_xy(wks,mon,plot_data,res)     ; create plot 
forrest@0
   653
    end do
forrest@0
   654
   
forrest@0
   655
    gsn_panel(wks,plot,(/3,2/),pres)                 ; create panel plot
forrest@0
   656
forrest@0
   657
    system("convert "+plot_name+"."+plot_type+" "+plot_name+"."+plot_type_new+";"+ \
forrest@0
   658
           "rm "+plot_name+"."+plot_type)
forrest@0
   659
forrest@0
   660
    clear (wks)  
forrest@0
   661
    delete (plot)
forrest@0
   662
 end do
forrest@0
   663
forrest@0
   664
;###################################################################
forrest@0
   665
; for the following tables,
forrest@0
   666
; sort by latitude in decending order (N->S)
forrest@0
   667
; sort by lat in decending order (N->S)
forrest@0
   668
forrest@0
   669
  isort = dim_pqsort(lat_ob,-1)
forrest@0
   670
forrest@0
   671
  station_sort = station(isort)
forrest@0
   672
  year_ob_sort = year_ob(isort)
forrest@0
   673
  lat_ob_sort  = lat_ob(isort)
forrest@0
   674
  lon_ob_sort  = lon_ob(isort)
forrest@0
   675
  M_score_sort = M_score(isort,:)
forrest@0
   676
 
forrest@0
   677
; print(isort)
forrest@0
   678
; print(lat_ob_sort)
forrest@0
   679
;###################################################################
forrest@0
   680
;*******************************************************************
forrest@0
   681
; html table of site: observed
forrest@0
   682
;*******************************************************************
forrest@0
   683
  output_html = "line_ob.html"
forrest@0
   684
forrest@0
   685
  header = (/"<HTML>" \
forrest@0
   686
            ,"<HEAD>" \
forrest@0
   687
            ,"<TITLE>CLAMP metrics</TITLE>" \
forrest@0
   688
            ,"</HEAD>" \
forrest@0
   689
            ,"<H1>Energy at Site: Observation</H1>" \
forrest@0
   690
            /) 
forrest@0
   691
  footer = "</HTML>"
forrest@0
   692
forrest@0
   693
  table_header = (/ \
forrest@0
   694
        "<table border=1 cellspacing=0 cellpadding=3 width=60%>" \
forrest@0
   695
       ,"<tr>" \
forrest@0
   696
       ,"   <th bgcolor=DDDDDD >Site Name</th>" \
forrest@0
   697
       ,"   <th bgcolor=DDDDDD >Latitude</th>" \
forrest@0
   698
       ,"   <th bgcolor=DDDDDD >Longitude</th>" \
forrest@0
   699
       ,"   <th bgcolor=DDDDDD >Observed</th>" \ 
forrest@0
   700
       ,"</tr>" \
forrest@0
   701
       /)
forrest@0
   702
  table_footer = "</table>"
forrest@0
   703
  row_header = "<tr>"
forrest@0
   704
  row_footer = "</tr>"
forrest@0
   705
forrest@0
   706
  lines = new(50000,string)
forrest@0
   707
  nline = 0
forrest@0
   708
forrest@0
   709
  set_line(lines,nline,header)
forrest@0
   710
  set_line(lines,nline,table_header)
forrest@0
   711
;-----------------------------------------------
forrest@0
   712
; row of table
forrest@0
   713
  
forrest@0
   714
  do n = 0,nstation-1
forrest@0
   715
     set_line(lines,nline,row_header)
forrest@0
   716
forrest@0
   717
     txt0 = station_sort(n)
forrest@0
   718
     txt1 = sprintf("%5.2f", lat_ob_sort(n))
forrest@0
   719
     txt2 = sprintf("%5.2f", lon_ob_sort(n))
forrest@0
   720
     txt3 = year_ob_sort(n)
forrest@0
   721
forrest@0
   722
     set_line(lines,nline,"<th><a href="+txt0+"_ob.png>"+txt0+"</a></th>")
forrest@0
   723
     set_line(lines,nline,"<th>"+txt1+"</th>")
forrest@0
   724
     set_line(lines,nline,"<th>"+txt2+"</th>")
forrest@0
   725
     set_line(lines,nline,"<th>"+txt3+"</th>")
forrest@0
   726
forrest@0
   727
     set_line(lines,nline,row_footer)
forrest@0
   728
  end do
forrest@0
   729
;-----------------------------------------------
forrest@0
   730
  set_line(lines,nline,table_footer)
forrest@0
   731
  set_line(lines,nline,footer) 
forrest@0
   732
forrest@0
   733
; Now write to an HTML file.
forrest@0
   734
  idx = ind(.not.ismissing(lines))
forrest@0
   735
  if(.not.any(ismissing(idx))) then
forrest@0
   736
    asciiwrite(output_html,lines(idx))
forrest@0
   737
  else
forrest@0
   738
   print ("error?")
forrest@0
   739
  end if
forrest@0
   740
  delete (idx)
forrest@0
   741
forrest@0
   742
;*******************************************************************
forrest@0
   743
; score and line table : model vs observed
forrest@0
   744
;*******************************************************************
forrest@0
   745
  output_html = "score+line_vs_ob.html"
forrest@0
   746
forrest@0
   747
  header = (/"<HTML>" \
forrest@0
   748
            ,"<HEAD>" \
forrest@0
   749
            ,"<TITLE>CLAMP metrics</TITLE>" \
forrest@0
   750
            ,"</HEAD>" \
forrest@0
   751
            ,"<H1>Energy at Site: Model "+model_name+"</H1>" \
forrest@0
   752
            /) 
forrest@0
   753
  footer = "</HTML>"
forrest@0
   754
forrest@0
   755
  delete (table_header)
forrest@0
   756
  table_header = (/ \
forrest@0
   757
        "<table border=1 cellspacing=0 cellpadding=3 width=100%>" \
forrest@0
   758
       ,"<tr>" \
forrest@0
   759
       ,"   <th bgcolor=DDDDDD >Site Name</th>" \
forrest@0
   760
       ,"   <th bgcolor=DDDDDD >Latitude</th>" \
forrest@0
   761
       ,"   <th bgcolor=DDDDDD >Longitude</th>" \
forrest@0
   762
       ,"   <th bgcolor=DDDDDD >Observed</th>" \
forrest@0
   763
       ,"   <th bgcolor=DDDDDD >CO2 Flux</th>" \
forrest@0
   764
       ,"   <th bgcolor=DDDDDD >Net Radiation</th>" \
forrest@0
   765
       ,"   <th bgcolor=DDDDDD >Latent Heat</th>" \
forrest@0
   766
       ,"   <th bgcolor=DDDDDD >Sensible Heat</th>" \
forrest@0
   767
       ,"   <th bgcolor=DDDDDD >GPP Glux</th>" \
forrest@0
   768
       ,"   <th bgcolor=DDDDDD >Respiration</th>" \
forrest@0
   769
       ,"   <th bgcolor=DDDDDD >Average</th>" \
forrest@0
   770
       ,"</tr>" \
forrest@0
   771
       /)
forrest@0
   772
  table_footer = "</table>"
forrest@0
   773
  row_header = "<tr>"
forrest@0
   774
  row_footer = "</tr>"
forrest@0
   775
forrest@0
   776
  lines = new(50000,string)
forrest@0
   777
  nline = 0
forrest@0
   778
forrest@0
   779
  set_line(lines,nline,header)
forrest@0
   780
  set_line(lines,nline,table_header)
forrest@0
   781
;-----------------------------------------------
forrest@0
   782
; row of table
forrest@0
   783
  
forrest@0
   784
  do n = 0,nstation-1
forrest@0
   785
     set_line(lines,nline,row_header)
forrest@0
   786
forrest@0
   787
     txt0  = station_sort(n)
forrest@0
   788
     txt1  = sprintf("%5.2f", lat_ob_sort(n))
forrest@0
   789
     txt2  = sprintf("%5.2f", lon_ob_sort(n))
forrest@0
   790
     txt3  = year_ob_sort(n)
forrest@0
   791
     txt4  = sprintf("%5.2f", M_score_sort(n,0))
forrest@0
   792
     txt5  = sprintf("%5.2f", M_score_sort(n,1))
forrest@0
   793
     txt6  = sprintf("%5.2f", M_score_sort(n,2))
forrest@0
   794
     txt7  = sprintf("%5.2f", M_score_sort(n,3))
forrest@0
   795
     txt8  = sprintf("%5.2f", M_score_sort(n,4))
forrest@0
   796
     txt9  = sprintf("%5.2f", M_score_sort(n,5))
forrest@0
   797
     txt10 = sprintf("%5.2f", avg(M_score_sort(n,:)))
forrest@0
   798
forrest@0
   799
     set_line(lines,nline,"<th><a href="+txt0+"_model_vs_ob.png>"+txt0+"</a></th>")
forrest@0
   800
     set_line(lines,nline,"<th>"+txt1+"</th>")
forrest@0
   801
     set_line(lines,nline,"<th>"+txt2+"</th>")
forrest@0
   802
     set_line(lines,nline,"<th>"+txt3+"</th>")
forrest@0
   803
     set_line(lines,nline,"<th>"+txt4+"</th>")
forrest@0
   804
     set_line(lines,nline,"<th>"+txt5+"</th>")
forrest@0
   805
     set_line(lines,nline,"<th>"+txt6+"</th>")
forrest@0
   806
     set_line(lines,nline,"<th>"+txt7+"</th>")
forrest@0
   807
     set_line(lines,nline,"<th>"+txt8+"</th>")
forrest@0
   808
     set_line(lines,nline,"<th>"+txt9+"</th>")
forrest@0
   809
     set_line(lines,nline,"<th>"+txt10+"</th>")
forrest@0
   810
forrest@0
   811
     set_line(lines,nline,row_footer)
forrest@0
   812
  end do
forrest@0
   813
forrest@0
   814
; last row, summary
forrest@0
   815
  set_line(lines,nline,row_header)
forrest@0
   816
forrest@0
   817
  txt0  = "All_"+sprintf("%.0f", nstation)
forrest@0
   818
  txt1  = "-"
forrest@0
   819
  txt2  = "-"
forrest@0
   820
  txt3  = "-"
forrest@0
   821
  txt4  = M_energy_co2
forrest@0
   822
  txt5  = M_energy_rad
forrest@0
   823
  txt6  = M_energy_lh
forrest@0
   824
  txt7  = M_energy_sh
forrest@0
   825
  txt8  = M_energy_gpp
forrest@0
   826
  txt9  = M_energy_er
forrest@0
   827
  txt10 = M_energy_all
forrest@0
   828
forrest@0
   829
  set_line(lines,nline,"<th>"+txt0+"</th>")
forrest@0
   830
  set_line(lines,nline,"<th>"+txt1+"</th>")
forrest@0
   831
  set_line(lines,nline,"<th>"+txt2+"</th>")
forrest@0
   832
  set_line(lines,nline,"<th>"+txt3+"</th>")
forrest@0
   833
  set_line(lines,nline,"<th>"+txt4+"</th>")
forrest@0
   834
  set_line(lines,nline,"<th>"+txt5+"</th>")
forrest@0
   835
  set_line(lines,nline,"<th>"+txt6+"</th>")
forrest@0
   836
  set_line(lines,nline,"<th>"+txt7+"</th>")
forrest@0
   837
  set_line(lines,nline,"<th>"+txt8+"</th>")
forrest@0
   838
  set_line(lines,nline,"<th>"+txt9+"</th>")
forrest@0
   839
  set_line(lines,nline,"<th>"+txt10+"</th>")
forrest@0
   840
forrest@0
   841
  set_line(lines,nline,row_footer)
forrest@0
   842
;-----------------------------------------------
forrest@0
   843
  set_line(lines,nline,table_footer)
forrest@0
   844
  set_line(lines,nline,footer) 
forrest@0
   845
forrest@0
   846
; Now write to an HTML file.
forrest@0
   847
  idx = ind(.not.ismissing(lines))
forrest@0
   848
  if(.not.any(ismissing(idx))) then
forrest@0
   849
    asciiwrite(output_html,lines(idx))
forrest@0
   850
  else
forrest@0
   851
   print ("error?")
forrest@0
   852
  end if
forrest@0
   853
  delete (idx)
forrest@0
   854
forrest@0
   855
;***************************************************************************
forrest@0
   856
; output plots
forrest@0
   857
;***************************************************************************
forrest@0
   858
  output_dir = model_name+"/ameriflux"
forrest@0
   859
forrest@0
   860
  system("mv *.png *.html " + output_dir) 
forrest@0
   861
;***************************************************************************
forrest@0
   862
end
forrest@0
   863