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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
## Copyright (C) 2013-2022 Alexander Barth
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; If not, see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {@var{x} =} ncread (@var{filename}, @var{varname})
## @deftypefnx {Function File} {@var{x} =} ncread (@var{filename}, @var{varname},@var{start},@var{count},@var{stride})
##
## Read the variable @var{varname} from the NetCDF file @var{filename}.
##
## If @var{start},@var{count} and @var{stride} are present, a subset of the
## variable is loaded. The parameter @var{start} contains the starting indices
## (1-based), @var{count} is the number of elements and @var{stride} the
## increment between two successive elements. These parameters are vectors whose
## length is equal to the number of dimension of the variable. Elements of
## @var{count} might be Inf which means that as many values as possible are
## loaded.
##
## If the variable has the _FillValue attribute, then the corresponding values
## are replaced by NaN (except for characters). NetCDF attributes scale_factor
## (default 1) and add_offset (default 0) are use the transform the variable
## during the loading:
##
## x = scale_factor * x_in_file + add_offset
##
## The output data type matches the NetCDF datatype, except when the attributes
## _FillValue, add_offset or scale_factor are defined in which case the output
## is a array in double precision.
##
## Note that values equal to the attribute missing_value are not replaced by
## NaN (for compatibility).
##
## @subsubheading Example
## Read the data from variable 'mydata' in the file test.nc.
## @example
## data = ncread('test.nc','mydata');
## @end example
##
## @seealso{ncwrite,ncinfo,ncdisp}
##
## @end deftypefn
function x = ncread (filename, varname, start, count, stride)
ncid = netcdf_open(filename,'NC_NOWRITE');
[gid,varid] = ncvarid(ncid,varname);
[varname_,xtype,dimids,natts] = netcdf_inqVar(gid,varid);
% number of dimenions
nd = length(dimids);
sz = zeros(1,nd);
for i=1:length(dimids)
[dimname, sz(i)] = netcdf_inqDim(gid,dimids(i));
endfor
if nargin < 3
start = ones(1,nd);
endif
if nargin < 4
count = inf*ones(1,nd);
endif
if nargin < 5
stride = ones(1,nd);
endif
% replace inf in count
i = count == inf;
count(i) = (sz(i)-start(i))./stride(i) + 1;
x = netcdf_getVar(gid,varid,start-1,count,stride);
% apply attributes
factor = [];
offset = [];
fv = [];
for i = 0:natts-1
attname = netcdf_inqAttName(gid,varid,i);
if strcmp(attname,'scale_factor')
factor = netcdf_getAtt(gid,varid,'scale_factor');
elseif strcmp(attname,'add_offset')
offset = netcdf_getAtt(gid,varid,'add_offset');
elseif strcmp(attname,'_FillValue')
fv = netcdf_getAtt(gid,varid,'_FillValue');
endif
endfor
netcdf_close(ncid);
# the scaling does not make sense of characters
if xtype == netcdf_getConstant('char') || ...
xtype == netcdf_getConstant('string')
return;
endif
# special handling for vlen
if iscell(x)
if !isempty(fv) || !isempty(factor) || !isempty(offset)
for k=1:length(x)
v = x{k};
if !isa(x{k}, 'double')
v = double(v);
endif
if !isempty(fv)
v(v == fv) = NaN;
endif
if !isempty(factor)
v = v * factor;
endif
if !isempty(offset)
v = v + offset;
endif
x{k} = v;
endfor
endif
else
if !isempty(fv) || !isempty(factor) || !isempty(offset)
if !isa(x, 'double')
x = double(x);
endif
if !isempty(fv)
x(x == fv) = NaN;
endif
if !isempty(factor)
x = x * factor;
endif
if !isempty(offset)
x = x + offset;
endif
endif
endif
endfunction
|