Skip to content
Snippets Groups Projects
Commit 4d6937ee authored by rink's avatar rink
Browse files

add dist from prof to each amv to product file

parent 183c2496
No related branches found
No related tags found
No related merge requests found
...@@ -318,7 +318,7 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct): ...@@ -318,7 +318,7 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct):
namvs = 0 namvs = 0
nlevs = 0 nlevs = 0
for key in keys: for key in keys:
lons, lats, pres, spd, dir, _ = aeolus_to_amv_dct.get(key) lons, lats, pres, spd, dir, dist = aeolus_to_amv_dct.get(key)
num_amvs.append(len(lons)) num_amvs.append(len(lons))
namvs += len(lons) namvs += len(lons)
...@@ -345,6 +345,8 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct): ...@@ -345,6 +345,8 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct):
amv_dir.units = 'degree' amv_dir.units = 'degree'
amv_pres = rootgrp.createVariable('amv_pres', 'f4', ['amvs']) amv_pres = rootgrp.createVariable('amv_pres', 'f4', ['amvs'])
amv_pres.units = 'hPa' amv_pres.units = 'hPa'
amv_dist = rootgrp.createVariable('amv_dist', 'f4', ['amvs'])
amv_dist.units = 'km'
num_amvs_per_prof = rootgrp.createVariable('num_amvs_per_prof', 'i4', ['num_aeolus_profs']) num_amvs_per_prof = rootgrp.createVariable('num_amvs_per_prof', 'i4', ['num_aeolus_profs'])
num_levs_per_prof = rootgrp.createVariable('num_levs_per_prof', 'i4', ['num_aeolus_profs']) num_levs_per_prof = rootgrp.createVariable('num_levs_per_prof', 'i4', ['num_aeolus_profs'])
...@@ -374,6 +376,7 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct): ...@@ -374,6 +376,7 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct):
amv_spd[i_a:i_b] = spd[:] amv_spd[i_a:i_b] = spd[:]
amv_dir[i_a:i_b] = dir[:] amv_dir[i_a:i_b] = dir[:]
amv_pres[i_a:i_b] = pres[:] amv_pres[i_a:i_b] = pres[:]
amv_dist[i_a:i_b] = dist[:]
i_a += namvs i_a += namvs
prof_s = aeolus_dct.get(key) prof_s = aeolus_dct.get(key)
......
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