From a40578d2ac7d07f0e4935a10d93cdc37ed127936 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Tue, 12 Jan 2021 15:06:57 -0600
Subject: [PATCH] snapshot...

---
 modules/aeolus/datasource.py | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/modules/aeolus/datasource.py b/modules/aeolus/datasource.py
index 665076d5..881b7c13 100644
--- a/modules/aeolus/datasource.py
+++ b/modules/aeolus/datasource.py
@@ -87,11 +87,14 @@ class Framework(AMVFiles):
         line_name = 'Line'
         lon_name = 'Longitude'
         lat_name = 'Latitude'
-        params = ['MedianPress', 'Wind_Speed', 'Wind_Dir', 'BestFitPresLvl']
-        out_params = ['Lon', 'Lat', 'Element', 'Line', 'pressure', 'wind_speed', 'wind_direction', 'BestFitPresLvl']
+        #params = ['MedianPress', 'Wind_Speed', 'Wind_Dir', 'BestFitPresLvl']
+        params = ['MedianPress', 'Wind_Speed', 'Wind_Dir']
+        #out_params = ['Lon', 'Lat', 'Element', 'Line', 'pressure', 'wind_speed', 'wind_direction', 'BestFitPresLvl']
+        out_params = ['Lon', 'Lat', 'Element', 'Line', 'pressure', 'wind_speed', 'wind_direction']
         meta_dict = {'Lon': ('degrees east', 'f4'), 'Lat': ('degrees north', 'f4'), 'Element': (None, 'i4'),
                      'Line': (None, 'i4'), 'pressure': ('hPa', 'f4'), 'wind_speed': ('m s-1', 'f4'),
-                     'wind_direction': ('degrees', 'f4'), 'BestFitPresLvl': ('hPa', 'f4')}
+                     #'wind_direction': ('degrees', 'f4'), 'BestFitPresLvl': ('hPa', 'f4')}
+                     'wind_direction': ('degrees', 'f4')}
 
         super().__init__(files_path, file_time_span, '*WINDS_AMV_EN-'+band+'*.nc', band=band, elem_name=elem_name, params=params,
                          line_name=line_name, lat_name=lat_name, lon_name=lon_name, out_params=out_params, meta_dict=meta_dict)
-- 
GitLab