-
Notifications
You must be signed in to change notification settings - Fork 0
/
nc_get1Dint.F90
56 lines (42 loc) · 1.65 KB
/
nc_get1Dint.F90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! svn propset svn:keywords "URL Rev Author Date Id"
! $URL: file:///data/zhuming/.vdras_source_code/SVN_REPOSITORY/VDRAS/trunk/vdras/io/netcdf4/nc_get1Dint.F90 $
! $Rev: 145 $
! $Author: huangwei $
! $Date: 2010-11-15 10:34:40 -0700 (Mon, 15 Nov 2010) $
! $Id: nc_get1Dint.F90 145 2010-11-15 17:34:40Z huangwei $
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
subroutine nc_get1Dint(ncid, var_name, var, nrec, &
nxs, nxe)
use netcdf
implicit none
integer, intent(in) :: ncid, nrec
integer, intent(in) :: nxs, nxe
character(len = *), intent(in) :: var_name
integer, dimension(nxs:nxe), intent(out) :: var
integer, dimension(2) :: start, count
! Variable id
integer :: varid
! Return status
integer :: status
status = nf90_inq_varid(ncid, var_name, varid)
if(status /= nf90_noerr) then
write(unit=0, fmt='(3a)') "Problem to get id for: <", trim(var_name), ">.", &
"Error status: ", trim(nf90_strerror(status))
write(unit=0, fmt='(3a, i4)') &
"Stop in file: <", __FILE__, ">, line: ", __LINE__
stop
end if
start(1) = nxs
start(2) = nrec
count(1) = nxe - nxs + 1
count(2) = 1
status = nf90_get_var(ncid,varid,var,start=start,count=count)
if(status /= nf90_noerr) then
write(unit=0, fmt='(3a)') "Problem to read: <", trim(var_name), ">.", &
"Error status: ", trim(nf90_strerror(status))
write(unit=0, fmt='(3a, i4)') &
"Stop in file: <", __FILE__, ">, line: ", __LINE__
stop
end if
end subroutine nc_get1Dint