!! Copyright (C) Stichting Deltares, 2005-2019. !! !! This file is part of iMOD. !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by !! the Free Software Foundation, either version 3 of the License, or !! (at your option) any later version. !! !! This program is distributed in the hope that it will be useful, !! but WITHOUT ANY WARRANTY; without even the implied warranty of !! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the !! GNU General Public License for more details. !! !! You should have received a copy of the GNU General Public License !! along with this program. If not, see . !! !! Contact: imod.support@deltares.nl !! Stichting Deltares !! P.O. Box 177 !! 2600 MH Delft, The Netherlands. !! MODULE DATEVAR INTEGER,PARAMETER :: MXDATE=12 CHARACTER(LEN=9),DIMENSION(MXDATE) :: CDATE = & (/'January ','February ','March ','April ','May ', & 'June ','July ', & 'August ','September','October ','November ','December '/) CHARACTER(LEN=3),DIMENSION(MXDATE) :: CDATE_SHORT = & (/'Jan','Feb','Mar','Apr','May', & 'Jun','Jul','Aug','Sep','Oct', & 'Nov','Dec'/) CHARACTER(LEN=3), DIMENSION(7) :: DAY = & (/'Mon','Tue','Wed','Thu','Fri','Sat','Sun'/) END MODULE