Skip to content
Snippets Groups Projects
Commit 6345ca2c authored by tomrink's avatar tomrink
Browse files

snapshot...

parent b9864114
No related branches found
No related tags found
No related merge requests found
...@@ -171,7 +171,6 @@ def create_file(match_dct, filename, caliop_clavrx_params, amv_params, amv_filen ...@@ -171,7 +171,6 @@ def create_file(match_dct, filename, caliop_clavrx_params, amv_params, amv_filen
prf_time.units = 'seconds since 1970-01-1 00:00:00' prf_time.units = 'seconds since 1970-01-1 00:00:00'
prf_elem = rootgrp.createVariable('FD_elem', 'f4', ['num_caliop_profs']) prf_elem = rootgrp.createVariable('FD_elem', 'f4', ['num_caliop_profs'])
prf_line = rootgrp.createVariable('FD_line', 'f4', ['num_caliop_profs']) prf_line = rootgrp.createVariable('FD_line', 'f4', ['num_caliop_profs'])
#prf_fidx = rootgrp.createVariable('amv_file_index', 'i4', ['num_caliop_profs'])
amvs_cnt_var = rootgrp.createVariable('num_amvs_per_match', 'i4', ['num_caliop_profs']) amvs_cnt_var = rootgrp.createVariable('num_amvs_per_match', 'i4', ['num_caliop_profs'])
...@@ -198,7 +197,7 @@ def create_file(match_dct, filename, caliop_clavrx_params, amv_params, amv_filen ...@@ -198,7 +197,7 @@ def create_file(match_dct, filename, caliop_clavrx_params, amv_params, amv_filen
amv_lat.units = 'degrees north' amv_lat.units = 'degrees north'
amv_elem = rootgrp.createVariable('amv_elem', 'f4', ['num_caliop_profs', 'max_num_amvs']) amv_elem = rootgrp.createVariable('amv_elem', 'f4', ['num_caliop_profs', 'max_num_amvs'])
amv_line = rootgrp.createVariable('amv_line', 'f4', ['num_caliop_profs', 'max_num_amvs']) amv_line = rootgrp.createVariable('amv_line', 'f4', ['num_caliop_profs', 'max_num_amvs'])
#prf_fidx = rootgrp.createVariable('amv_file_index', 'i4', ['num_caliop_profs']) amv_fidx = rootgrp.createVariable('amv_file_index', 'i4', ['num_caliop_profs'])
nc4_vars = [] nc4_vars = []
var_s = rg_exmpl.variables var_s = rg_exmpl.variables
...@@ -222,7 +221,7 @@ def create_file(match_dct, filename, caliop_clavrx_params, amv_params, amv_filen ...@@ -222,7 +221,7 @@ def create_file(match_dct, filename, caliop_clavrx_params, amv_params, amv_filen
prf_line[:] = lines prf_line[:] = lines
prf_time[:] = atimes prf_time[:] = atimes
amvs_cnt_var[:] = amvs_cnt amvs_cnt_var[:] = amvs_cnt
#prf_fidx[:] = fidxs amv_fidx[:] = fidxs
amv_file_names[:] = amv_file_s amv_file_names[:] = amv_file_s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment