1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
import cmor
import numpy
error_flag = cmor.setup(inpath='Test', netcdf_file_action=cmor.CMOR_REPLACE)
error_flag = cmor.dataset_json("Test/CMOR_input_example.json")
# creates 10 degree grid
nlat = 18
nlon = 36
alats = numpy.arange(180) - 89.5
bnds_lat = numpy.arange(181) - 90.
alons = numpy.arange(360) + .5
bnds_lon = numpy.arange(361)
cmor.load_table("Tables/CMIP6_Amon.json")
ilat = cmor.axis(
table_entry='latitude',
units='degrees_north',
length=nlat,
coord_vals=alats,
cell_bounds=bnds_lat)
ilon = cmor.axis(
table_entry='longitude',
length=nlon,
units='degrees_east',
coord_vals=alons,
cell_bounds=bnds_lon)
ntimes = 600
plevs = numpy.array([100000., 92500, 85000, 70000, 60000, 50000, 40000, 30000, 25000,
20000, 15000, 10000, 7000, 5000, 3000, 2000, 1000, 999, 998, 997, 996,
995, 994, 993, 992, 500, 100])
itim = cmor.axis(
table_entry='time',
units='months since 2030-1-1',
length=ntimes,
interval='1 month')
ilev = cmor.axis(
table_entry='plev19',
units='Pa',
coord_vals=plevs,
cell_bounds=None)
for it in range(ntimes):
var3d_ids = cmor.variable(
table_entry='ta',
units='K',
comment='My wise comments here',
axis_ids=numpy.array((ilev, ilon, ilat, itim)),
missing_value=numpy.array([1.0e28, ], dtype=numpy.float32)[0],
original_name='cloud')
time = numpy.array((it))
bnds_time = numpy.array((it, it + 1))
data3d = numpy.random.random((len(plevs), nlon, nlat)) * 30. + 265.
data3d = data3d.astype('f')
error_flag = cmor.write(
var_id=var3d_ids,
data=data3d,
ntimes_passed=1,
time_vals=time,
time_bnds=bnds_time)
cmor.close(var3d_ids)
error_flag = cmor.close()
|