next up previous contents
Next: ncd_iolocal_gs_int1d Up: Fortran: Module Interface ncdioMod Previous: ncd_iolocal_int_1d   Contents

ncd_iolocal_int_2d


INTERFACE:

   subroutine ncd_iolocal_int_2d(varname, data, dim1name, dim2name, &
              lowerb2, upperb2, flag, ncid, nlonxy, nlatxy, nt, readvar, missing, usepio)
DESCRIPTION:

Netcdf i/o of 2d initial integer field out to netCDF file


USES:

ARGUMENTS:
     implicit none
     character(len=*), intent(in)  :: flag               ! 'read' or 'write'
     integer         , intent(in)  :: ncid               ! input unit
     character(len=*), intent(in)  :: varname            ! variable name
     integer         , pointer     :: data(:,:)          ! local decomposition input data
     character(len=*), intent(in)  :: dim1name           ! dimension 1 name
     character(len=*), intent(in)  :: dim2name           ! dimension 2 name
     integer         , optional, intent(in) :: nlonxy    ! 2d longitude size
     integer         , optional, intent(in) :: nlatxy    ! 2d latitude size
     integer         , optional, intent(in) :: nt        ! time sample index
     integer         , optional, intent(in) :: lowerb2,upperb2 ! lower and upper bounds of second dimension
     logical         , optional, intent(out):: readvar   ! true => variable is on initial dataset (read only)
     integer         , optional, intent(in) :: missing   ! missing value
     logical         , optional, intent(in) :: usepio    ! use pio lib
REVISION HISTORY:
LOCAL VARIABLES:




Erik Kluzek 2010-06-21