Skip to content
Snippets Groups Projects
Commit a40578d2 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 58aa28e0
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
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