next up previous contents index
Next: ncd_iolocal_int_1d Up: Module ncdioMod (File: ncdio.F90) Previous: check_ret   Contents   Index


ncd_defvar


INTERFACE:

   subroutine ncd_defvar(ncid, varname, xtype, &
        dim1name, dim2name, dim3name, dim4name, dim5name, &
        long_name, units, cell_method, missing_value, fill_value, &
        imissing_value, ifill_value)
DESCRIPTION:

    Define a netcdf variable
ARGUMENTS:
     implicit none
     integer         , intent(in)  :: ncid                    ! input unit
     character(len=*), intent(in)  :: varname                 ! variable name
     integer         , intent(in)  :: xtype                   ! external type
     character(len=*), intent(in), optional :: dim1name       ! dimension name
     character(len=*), intent(in), optional :: dim2name       ! dimension name
     character(len=*), intent(in), optional :: dim3name       ! dimension name
     character(len=*), intent(in), optional :: dim4name       ! dimension name
     character(len=*), intent(in), optional :: dim5name       ! dimension name
     character(len=*), intent(in), optional :: long_name      ! attribute
     character(len=*), intent(in), optional :: units          ! attribute
     character(len=*), intent(in), optional :: cell_method    ! attribute
     real(r8)        , intent(in), optional :: missing_value  ! attribute for 
     real(r8)        , intent(in), optional :: fill_value     ! attribute for 
     integer         , intent(in), optional :: imissing_value ! attribute for 
     integer         , intent(in), optional :: ifill_value    ! attribute for
REVISION HISTORY:




Mariana Vertenstein 2004-06-21