#! /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.'