#! /usr/bin/env python """ Info messages """ """ Warning messages """ """ Error messages """ error_missing_arguments = 'Missing arguments -i -o. Run {0} -h for help.' error_missing_list_of_variables = 'List of variable names should be given.' error_no_valid_input_data = 'No InputData object was provided.' error_not_enough_coordinates = '' + \ 'Not enough coordinates were provided as InputData.input_coordinates.' error_no_valid_list_of_years = '' + \ 'A list of years (int) to extract should be provided.' error_no_valid_list_of_vars = '' + \ 'A list of variables (str) to extract should be provided.' error_not_initialized_data_dict = '' + \ 'Data dictionary has not been initialized, ' + \ 'no xarray or netCDF can be created.' error_no_dataset_in_output_data = 'No valid dataset in OutputData.' error_all_arguments_required = 'All arguments are required for resampling.' error_max_lon_not_set = 'Max longitud needs to be set.' error_needs_to_be_in_subclass = 'Needs to be implemented in subclasses.'