From e70a887cc210d1db1c1f2b146b792ff5bb0c8e9b Mon Sep 17 00:00:00 2001
From: rink <rink@ssec.wisc.edu>
Date: Tue, 6 Oct 2020 09:24:31 -0500
Subject: [PATCH] fix indexing problem with prof lon/lats

---
 modules/aeolus/aeolus_amv.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py
index d2e835cd..abd8f2ec 100644
--- a/modules/aeolus/aeolus_amv.py
+++ b/modules/aeolus/aeolus_amv.py
@@ -418,8 +418,8 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct):
         prf_spd[i_c:i_d] = prof[:, 6]
         i_c += nlevs
 
-        prf_lat[idx] = prof[0, 0]
-        prf_lon[idx] = prof[0, 1]
+        prf_lat[idx::] = prof[0, 0]
+        prf_lon[idx::] = prof[0, 1]
 
     num_amvs_per_prof[:] = num_amvs
     num_levs_per_prof[:] = num_levs
-- 
GitLab