source: trunk/src/read_civdata.m @ 612

Last change on this file since 612 was 612, checked in by sommeria, 11 years ago

a few bugs repaired

File size: 9.6 KB
RevLine 
[237]1%'read_civdata': reads new civ data from netcdf files
2%------------------------------------------------------------------
3%
[580]4% function [Field,VelTypeOut]=read_civdata(filename,FieldNames,VelType)
[237]5%
6% OUTPUT:
7% Field: structure representing the selected field, containing
8%            .Txt: (char string) error message if any
9%            .ListGlobalAttribute: list of global attributes containing:
10%                    .NbCoord: number of vector components
11%                    .NbDim: number of dimensions (=2 or 3)
[515]12%                    .Dt: time interval for the corresponding image pair
[237]13%                    .Time: absolute time (average of the initial image pair)
14%                    .CivStage: =0,
15%                       =1, civ1 has been performed only
16%                       =2, fix1 has been performed
17%                       =3, pacth1 has been performed
18%                       =4, civ2 has been performed
19%                       =5, fix2 has been performed
20%                       =6, pacth2 has been performed
21%                     .CoordUnit: 'pixel'
22%             .ListVarName: {'X'  'Y'  'U'  'V'  'F'  'FF'}
23%                   .X, .Y, .Z: set of vector coordinates
24%                    .U,.V,.W: corresponding set of vector components
25%                    .F: warning flags
26%                    .FF: error flag, =0 for good vectors
27%                     .C: scalar associated with velocity (used for vector colors)
28%
29% VelTypeOut: velocity type corresponding to the selected field: ='civ1','interp1','interp2','civ2'....
30%
31% INPUT:
32% filename: file name (string).
33% FieldNames =cell of field names to get, which can contain the strings:
34%             'ima_cor': image correlation, vec_c or vec2_C
35%             'vort','div','strain': requires velocity derivatives DUDX...
36%             'error': error estimate (vec_E or vec2_E)
37%             
38% VelType : character string indicating the types of velocity fields to read ('civ1','civ2'...)
39%            if vel_type=[] or'*', a  priority choice, given by vel_type_out{1,2}, is done depending
40%            if vel_type='filter'; a structured field is sought (filter2 in priority, then filter1)
41
42
43% FUNCTIONS called:
44% 'varcivx_generator':, sets the names of vaiables to read in the netcdf file
45% 'nc2struct': reads a netcdf file
46
[517]47function [Field,VelTypeOut,errormsg]=read_civdata(filename,FieldNames,VelType)
[406]48
[237]49%% default input
50if ~exist('VelType','var')
[246]51    VelType='';
[237]52end
53if isequal(VelType,'*')
[246]54    VelType='';
[237]55end
[246]56if isempty(VelType)
57    VelType='';
58end
[237]59if ~exist('FieldNames','var')
60    FieldNames=[]; %default
61end
[406]62errormsg='';
[515]63if ischar(FieldNames), FieldNames={FieldNames}; end;
[581]64ProjModeRequest='';
[515]65for ilist=1:length(FieldNames)
66    if ~isempty(FieldNames{ilist})
67        switch FieldNames{ilist}
68            case{'U','V','norm(U,V)'}
[581]69                ProjModeRequest='interp_lin';
[515]70            case {'curl(U,V)','div(U,V)','strain(U,V)'}
[581]71                ProjModeRequest='interp_tps';
[515]72        end
73    end
74end
[237]75
76%% reading data
[517]77Data=nc2struct(filename,'ListGlobalAttribute','CivStage');
[612]78if isfield(Data,'Txt')
79     erromsg=['error in read_civdata: ' Data.Txt];
80    return
81end
[581]82[varlist,role,VelTypeOut]=varcivx_generator(ProjModeRequest,VelType,Data.CivStage);
[406]83if isempty(varlist)
84    erromsg=['error in read_civdata: unknow velocity type ' VelType];
85    return
86else
87    [Field,vardetect]=nc2struct(filename,varlist);%read the variables in the netcdf file
88end
[237]89if isfield(Field,'Txt')
90    errormsg=Field.Txt;
91    return
92end
93if vardetect(1)==0
[379]94     errormsg=[ 'requested field not available in ' filename '/' VelType ': need to run patch'];
[237]95     return
96end
[380]97switch VelTypeOut
[494]98    case{'civ1','filter1'}
99        if isfield(Field,'Patch1_SubDomain')
100            Field.SubDomain=Field.Patch1_SubDomain;
101            Field.ListGlobalAttribute=[Field.ListGlobalAttribute {'SubDomain'}];
[594]102        end
103        if isfield(Field,'Civ1_Dt')
[380]104        Field.Dt=Field.Civ1_Dt;
[594]105        end
106        if isfield(Field,'Civ1_Time')
[494]107        Field.Time=Field.Civ1_Time;
[594]108        end
[494]109    case{'civ2','filter2'}
110        if isfield(Field,'Patch2_SubDomain')
111            Field.SubDomain=Field.Patch2_SubDomain;
112            Field.ListGlobalAttribute=[Field.ListGlobalAttribute {'SubDomain'}];
113        end
[594]114        if isfield(Field,'Civ2_Dt')
[380]115        Field.Dt=Field.Civ2_Dt;
[594]116        end
117        if isfield(Field,'Civ2_Time')
[494]118        Field.Time=Field.Civ2_Time;
[594]119        end
[372]120end
[494]121Field.ListGlobalAttribute=[Field.ListGlobalAttribute {'Dt','Time'}];
[515]122ivar_U_tps=[];
[581]123ivar_V_tps=[];
[237]124var_ind=find(vardetect);
[389]125for ivar=1:numel(var_ind)
[237]126    Field.VarAttribute{ivar}.Role=role{var_ind(ivar)};
[515]127    if strcmp(role{var_ind(ivar)},'vector_x')
[576]128        Field.VarAttribute{ivar}.FieldName=FieldNames;
[581]129        Field.VarAttribute{ivar}.ProjModeRequest=ProjModeRequest;
[515]130        ivar_U=ivar;
131    end
132    if strcmp(role{var_ind(ivar)},'vector_x_tps')
[576]133        Field.VarAttribute{ivar}.FieldName=FieldNames;
[581]134        Field.VarAttribute{ivar}.ProjModeRequest=ProjModeRequest;
[515]135        ivar_U_tps=ivar;
136    end
[581]137    if strcmp(role{var_ind(ivar)},'vector_y')
138        Field.VarAttribute{ivar}.FieldName=FieldNames;
139        Field.VarAttribute{ivar}.ProjModeRequest=ProjModeRequest;
140        ivar_V=ivar;
141    end
142    if strcmp(role{var_ind(ivar)},'vector_y_tps')
143        Field.VarAttribute{ivar}.FieldName=FieldNames;
144        Field.VarAttribute{ivar}.ProjModeRequest=ProjModeRequest;
145        ivar_V_tps=ivar;
146    end
[237]147    Field.VarAttribute{ivar}.Mesh=0.1;%typical mesh for histograms O.1 pixel
148end
[515]149if ~isempty(ivar_U_tps)
150    Field.VarAttribute{ivar_U}.VarIndex_tps=ivar_U_tps;
151end
[581]152if ~isempty(ivar_V_tps)
153    Field.VarAttribute{ivar_V}.VarIndex_tps=ivar_V_tps;
154end
[515]155
[581]156%% update list of global attributes
[237]157Field.ListGlobalAttribute=[Field.ListGlobalAttribute {'NbCoord','NbDim','TimeUnit','CoordUnit'}];
158Field.NbCoord=2;
159Field.NbDim=2;
160Field.TimeUnit='s';
161Field.CoordUnit='pixel';
162
163%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
164% [var,role,units,vel_type_out]=varcivx_generator(FieldNames,vel_type)
165%INPUT:
166% FieldNames =cell of field names to get, which can contain the strings:
167%             'ima_cor': image correlation, vec_c or vec2_C
168%             'vort','div','strain': requires velocity derivatives DUDX...
169%             'error': error estimate (vec_E or vec2_E)
170%             
171% vel_type: character string indicating the types of velocity fields to read ('civ1','civ2'...)
[380]172%            if vel_type=[] or'*', a  priority choice is done, civ2 considered better than civ1 )
[237]173
[581]174function [var,role,vel_type_out,errormsg]=varcivx_generator(ProjModeRequest,vel_type,CivStage)
[237]175
176%% default input values
[246]177if ~exist('vel_type','var'),vel_type='';end;
[237]178if iscell(vel_type),vel_type=vel_type{1}; end;%transform cell to string if needed
[406]179errormsg='';
[237]180
181%% select the priority order for automatic vel_type selection
[581]182if strcmp(vel_type,'civ2') && strcmp(ProjModeRequest,'derivatives')
[492]183    vel_type='filter2';
[581]184elseif strcmp(vel_type,'civ1') && strcmp(ProjModeRequest,'derivatives')
[492]185    vel_type='filter1';
186end
[406]187if isempty(vel_type)||strcmp(vel_type,'*')
[380]188    switch CivStage
189        case {6} %filter2 available
[492]190            vel_type='filter2';
[380]191        case {4,5}% civ2 available but not filter2
[581]192            if strcmp(ProjModeRequest,'derivatives')% derivatives needed
[492]193                vel_type='filter1';
[380]194            else
195                vel_type='civ2';
196            end
[492]197        case 3
198            vel_type='filter1';
199        case {1,2}% civ1 available but not filter1
[380]200            vel_type='civ1';
201    end
202end
[492]203
[406]204var={};
[246]205switch vel_type
[389]206    case 'civ1'
[492]207        var={'X','Y','Z','U','V','W','C','F','FF';...
208            'Civ1_X','Civ1_Y','Civ1_Z','Civ1_U','Civ1_V','Civ1_W','Civ1_C','Civ1_F','Civ1_FF'};
209        role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag'};
[515]210    %    units={'pixel','pixel','pixel','pixel','pixel','pixel','','',''};
[389]211    case 'filter1'
[582]212        var={'X','Y','Z','U','V','W','C','F','FF','Coord_tps','U_tps','V_tps','W_tps','SubRange','NbCentres','NbCentres';...
[389]213            'Civ1_X','Civ1_Y','Civ1_Z','Civ1_U_smooth','Civ1_V_smooth','Civ1_W','Civ1_C','Civ1_F','Civ1_FF',...
[582]214            'Civ1_Coord_tps','Civ1_U_tps','Civ1_V_tps','Civ1_W_tps','Civ1_SubRange','Civ1_NbCentres','Civ1_NbSites'};
[497]215        role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag','coord_tps','vector_x_tps',...
[582]216            'vector_y_tps','vector_z_tps','ancillary','ancillary','ancillary'};
217     %  rmq: NbSites obsolete replaced by NbCentres, kept for consistency with previous data
[389]218    case 'civ2'
[492]219        var={'X','Y','Z','U','V','W','C','F','FF';...
220            'Civ2_X','Civ2_Y','Civ2_Z','Civ2_U','Civ2_V','Civ2_W','Civ2_C','Civ2_F','Civ2_FF'};
221        role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag'};
[389]222    case 'filter2'
[582]223        var={'X','Y','Z','U','V','W','C','F','FF','Coord_tps','U_tps','V_tps','W_tps','SubRange','NbCentres','NbCentres';...
[389]224            'Civ2_X','Civ2_Y','Civ2_Z','Civ2_U_smooth','Civ2_V_smooth','Civ2_W','Civ2_C','Civ2_F','Civ2_FF',...
[582]225            'Civ2_Coord_tps','Civ2_U_tps','Civ2_V_tps','','Civ2_SubRange','Civ2_NbCentres','Civ2_NbSites'};
[497]226        role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag','coord_tps','vector_x_tps',...
[582]227            'vector_y_tps','vector_z_tps','ancillary','ancillary','ancillary'};
[246]228end
[581]229if ~strcmp(ProjModeRequest,'interp_tps')
[515]230    var=var(:,1:9);%suppress tps if not needed
231end
[380]232vel_type_out=vel_type;
[237]233
234
235
[246]236
237
Note: See TracBrowser for help on using the repository browser.