Hi Paola,
Thanks again for your help! I’ve successfully mapped the data and am now working on preparing the configuration template for the file setup. Specifically, I’m using the CMIP template, and I have a few questions about lines 68 to 74 in the config file, which refer to the ancillary paths: ACCESS-MOPPeR/CMIP6_conf.yaml at main · ACCESS-Community-Hub/ACCESS-MOPPeR · GitHub.
ancils_path: "data/ancils"
For ancils_path, should I specify the overarching directory (e.g., data/ancils), or does it need a more specific path pointing to individual ancillary files?
land_frac: ""
tile_frac: ""
I’m uncertain about what files are expected for land_frac and tile_frac. I have a grid.nc
file with the following structure:
netcdf grids {
dimensions:
nxo = 360 ;
nyo = 300 ;
nco = 4 ;
nxa = 192 ;
nya = 94 ;
nca = 4 ;
nx1 = 192 ;
ny1 = 145 ;
nc1 = 4 ;
nx2 = 192 ;
ny2 = 145 ;
nc2 = 4 ;
nx3 = 192 ;
ny3 = 144 ;
nc3 = 4 ;
variables:
double cice.lon(nyo, nxo) ;
cice.lon:units = "degrees_east" ;
cice.lon:title = "cice grid T-cell longitude" ;
double cice.lat(nyo, nxo) ;
cice.lat:units = "degrees_north" ;
cice.lat:title = "cice grid T-cell latitude" ;
double cice.ang(nyo, nxo) ;
cice.ang:units = "degrees" ;
cice.ang:title = "cice grid T-cell local rotation angle" ;
double cice.clo(nco, nyo, nxo) ;
cice.clo:units = "degrees_east" ;
cice.clo:title = "cice grid T cell corner longitude" ;
double cice.cla(nco, nyo, nxo) ;
cice.cla:units = "degrees_north" ;
cice.cla:title = "cice grid T-cell corner latitude" ;
double nt62.lon(nya, nxa) ;
nt62.lon:units = "degrees_east" ;
nt62.lon:title = "nt62 grid T-cell longitude" ;
double nt62.lat(nya, nxa) ;
nt62.lat:units = "degrees_north" ;
nt62.lat:title = "nt62 grid T-cell latitude" ;
double nt62.ang(nya, nxa) ;
nt62.ang:units = "degrees" ;
nt62.ang:title = "nt62 grid T-cell local rotation angle" ;
double nt62.clo(nca, nya, nxa) ;
nt62.clo:units = "degrees_east" ;
nt62.clo:title = "nt62 grid T-cell corner longitude" ;
double nt62.cla(nca, nya, nxa) ;
nt62.cla:units = "degrees_north" ;
nt62.cla:title = "nt62 grid T-cell corner latitude" ;
double um1t.lon(ny1, nx1) ;
um1t.lon:units = "degrees_east" ;
um1t.lon:title = "um1t grid center longitude" ;
double um1t.lat(ny1, nx1) ;
um1t.lat:units = "degrees_north" ;
um1t.lat:title = "um1t grid center latitude" ;
double um1t.ang(ny1, nx1) ;
um1t.ang:units = "degrees" ;
um1t.ang:title = "um1t grid local rotation angle" ;
double um1t.clo(nc1, ny1, nx1) ;
um1t.clo:units = "degrees_east" ;
um1t.clo:title = "um1t grid corner longitude" ;
double um1t.cla(nc1, ny1, nx1) ;
um1t.cla:units = "degrees_north" ;
um1t.cla:title = "um1t grid corner latitude" ;
double um1u.lon(ny2, nx2) ;
um1u.lon:units = "degrees_east" ;
um1u.lon:title = "um1u grid center longitude" ;
double um1u.lat(ny2, nx2) ;
um1u.lat:units = "degrees_north" ;
um1u.lat:title = "um1u grid center latitude" ;
double um1u.ang(ny2, nx2) ;
um1u.ang:units = "degrees" ;
um1u.ang:title = "um1u grid local rotation angle" ;
double um1u.clo(nc2, ny2, nx2) ;
um1u.clo:units = "degrees_east" ;
um1u.clo:title = "um1u grid corner longitude" ;
double um1u.cla(nc2, ny2, nx2) ;
um1u.cla:units = "degrees_north" ;
um1u.cla:title = "um1u grid corner latitude" ;
double um1v.lon(ny3, nx3) ;
um1v.lon:units = "degrees_east" ;
um1v.lon:title = "um1v grid center longitude" ;
double um1v.lat(ny3, nx3) ;
um1v.lat:units = "degrees_north" ;
um1v.lat:title = "um1v grid center latitude" ;
double um1v.ang(ny3, nx3) ;
um1v.ang:units = "degrees" ;
um1v.ang:title = "um1v grid local rotation angle" ;
double um1v.clo(nc3, ny3, nx3) ;
um1v.clo:units = "degrees_east" ;
um1v.clo:title = "um1v grid corner longitude" ;
double um1v.cla(nc3, ny3, nx3) ;
um1v.cla:units = "degrees_north" ;
um1v.cla:title = "um1v grid corner latitude" ;
}
Does this grid.nc file contain the necessary information for land_frac and tile_frac?
Lastly, for history_data: "",
I’m not entirely sure what to include here. Could you clarify what’s generally expected?
Thanks for your guidance!