INTERFACE:
integer function zio_nf_put_vara_int(filedesc,varid,istart, &
& icount,ivals,distarray, &
& fillvalue)
DESCRIPTION:Puts a range of the given integer*4 variable to an output file. Closes a netCDF file
REVISION HISTORY:
2003-Jan-31 -- first prototype
2003-Feb-20 -- istart and icount changed to assumed-size arrays
2003-Aug-14 -- added partial support of prefilling netCDF datasetINPUT PARAMETERS:
implicit none
integer, intent(in) :: filedesc
integer, intent(in) :: varid
integer, intent(in) :: istart(*), icount(*) ! in output index order
integer(zio_i4), intent(in) :: ivals(*)
integer, optional, intent(in) :: distarray
integer(zio_i4), optional, intent(in) :: fillvalueREMARKS:
istart and icount used to refer only to the array section in the netCDF data space in disk, but not array's memory space. However, currently we let istart and icount refer to an array section in BOTH the netCDF data and memory space. That is, an array section in netCDF data space is written from or read into the corresponding section of the global array.
\