Extract a subset from the first dimension (normally columns) of a 3D field. Applicable to most variables e.g. tau, ssa, g
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | ncol | Array sizes |
||
integer, | intent(in) | :: | nlay | Array sizes |
||
integer, | intent(in) | :: | ngpt | Array sizes |
||
real(kind=wp), | intent(in), | dimension(ncol,nlay,ngpt) | :: | array_in | Array to subset |
|
integer, | intent(in) | :: | colS | Starting and ending index |
||
integer, | intent(in) | :: | colE | Starting and ending index |
||
real(kind=wp), | intent(out), | dimension(colE-colS+1, nlay,ngpt) | :: | array_out | subset of the input array |