Index: trunk/SDToolBox/output_data.py =================================================================== diff -u -r59 -r63 --- trunk/SDToolBox/output_data.py (.../output_data.py) (revision 59) +++ trunk/SDToolBox/output_data.py (.../output_data.py) (revision 63) @@ -232,15 +232,17 @@ """ netcdf.featureType = 'timeSeries' netcdf.Conventions = 'CF-1.4' - netcdf.standard_name_vocabulary = 'CF Standard Name Table vNN' + netcdf.standard_name_vocabulary = 'CF Standard Name Table v68' + stored_keys = string.join(data_dict[self.var_val_key].keys()) + netcdf.title = 'ERA5 {} data.'.format(stored_keys) + netcdf.summary = 'ERA5 {} hourly timeseries'.format(stored_keys) - netcdf.title = '{}'.format(dataset_code) + \ - ' data North Sea Dutch coast' - netcdf.summary = '' + \ - 'North Sea Water Level data in coastal gauges for the Dutch coast' - netcdf.period = '{}'.format(dataset_code) - netcdf.keywords = '' + \ - 'water level, storm surge, astronomical tide, mean sea level' + netcdf.period = '{} - {}'.format( + str(data_dict[self.var_time_key][0]), + str(data_dict[self.var_time_key][-1])) + netcdf.keywords = 'Time ({}), '.format(self.var_time_key) + \ + 'Latitude ({}), '.format(self.var_lat_key) + \ + 'Longitude ({})'.format(self.var_lon_key) netcdf.institution = 'Deltares' netcdf.publisher_name = 'Deltares' @@ -478,14 +480,13 @@ 0.01, 0 ) - if dataset_code in['RCP45', 'RCP85']: - self.__set_model_variable( - netcdf, - 'SLR', 'mean sea level', - 'mean_sea_level', 'mean sea level', - 'lat lon', 'm', - 0.01, 0 - ) + self.__set_model_variable( + netcdf, + 'SLR', 'mean sea level', + 'mean_sea_level', 'mean sea level', + 'lat lon', 'm', + 0.01, 0 + ) def __set_model_variable( self,