!! Copyright (C) Stichting Deltares, 2005-2014. !! !! 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 MOD_IDF_PAR TYPE IDFOBJ INTEGER :: IU INTEGER :: NCOL INTEGER :: NROW INTEGER :: IEQ !=0:equi =1:non-equi INTEGER :: ITB !=0: =1:usage of top/bot information INTEGER :: IVF !=0: =1:usage of vector content INTEGER :: IPG !=0: =1:usage of polygon used in IDFEDIT INTEGER :: IXV !=0:storage in x =1:storage in v INTEGER :: JD !=julian date (if neccessary) REAL :: DAYFRACTION !=daily fraction INTEGER :: ILAY !=ilay of idf (if neccessary) REAL :: XMIN,YMIN,XMAX,YMAX REAL :: DX,DY !equi.distance if ieq=0 REAL :: TOP,BOT !top and bot information REAL :: NODATA,DMIN,DMAX REAL,DIMENSION(:),POINTER :: SX !x.coord. network REAL,DIMENSION(:),POINTER :: SY !y.coord. network REAL,DIMENSION(:,:),POINTER :: X !idfvalues in matrix REAL,DIMENSION(:),POINTER :: V !idfvalues in vector REAL,DIMENSION(:,:,:),POINTER :: XV !vector field, top,bot,vx,vy,vz1,vz2 INTEGER(KIND=2),DIMENSION(:,:),POINTER :: YSEL !idfvalues in vector, irow/icol CHARACTER(LEN=4),DIMENSION(:),POINTER :: COMMENT !comments INTEGER :: NTHREAD CHARACTER(LEN=256) :: FNAME ! name of the idf END TYPE IDFOBJ CHARACTER(LEN=256) :: ERRORTXT INTEGER,PARAMETER :: NIDFTRANSFORM=7 CHARACTER(LEN=30),DIMENSION(NIDFTRANSFORM) :: IDFTRANSFORM DATA IDFTRANSFORM/'none','m --> cm','cm --> m','m --> mm','mm --> m','m3/day --> mm/day','mm/day --> m3/day'/ END MODULE MOD_IDF_PAR