diff --git a/modules/aeolus/datasource.py b/modules/aeolus/datasource.py index 665076d57be577c32e6ac6627e78001af3a7c63a..881b7c13c7768ec8fde46e0bb3b02aea67107788 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)