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

fix indexing problem with prof lon/lats

parent 309282cc
No related branches found
No related tags found
No related merge requests found
...@@ -418,8 +418,8 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct): ...@@ -418,8 +418,8 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct):
prf_spd[i_c:i_d] = prof[:, 6] prf_spd[i_c:i_d] = prof[:, 6]
i_c += nlevs i_c += nlevs
prf_lat[idx] = prof[0, 0] prf_lat[idx::] = prof[0, 0]
prf_lon[idx] = prof[0, 1] prf_lon[idx::] = prof[0, 1]
num_amvs_per_prof[:] = num_amvs num_amvs_per_prof[:] = num_amvs
num_levs_per_prof[:] = num_levs num_levs_per_prof[:] = num_levs
......
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