From 70216edf039fe73a51aafd7dfc98e3b3147b4643 Mon Sep 17 00:00:00 2001 From: huikyole Date: Mon, 25 Jan 2016 10:37:57 -0800 Subject: [PATCH] CLIMATE-724 - Debugging load_dataset_from_multiple_netcdf_files - ocw.data_source.local.load_dataset_from_multiple_netcdf_files has been fixed. --- ocw/data_source/local.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ocw/data_source/local.py b/ocw/data_source/local.py index 34738ac1..2ae1fd14 100644 --- a/ocw/data_source/local.py +++ b/ocw/data_source/local.py @@ -406,9 +406,9 @@ def load_WRF_2d_files_RAIN(file_path=None, times2 = numpy.array(times2) return Dataset(lats, lons, times2, values, variable_name, units=variable_unit, name=name) -def load_dataset_from_multiple_netcdf_files(file_list, variable_name, +def load_dataset_from_multiple_netcdf_files(variable_name, lat_name=None, lon_name=None, time_name=None, - name='', file_path=None, filename_pattern=None, + name='', file_list=None, file_path=None, filename_pattern=None, mask_file=None, mask_variable=None, mask_value=0): ''' Load multiple netCDF files from the same source (an observation or a model) into a Dataset. The dataset can be spatially subset.