[237] | 1 | %'read_civdata': reads new civ data from netcdf files
|
---|
| 2 | %------------------------------------------------------------------
|
---|
| 3 | %
|
---|
| 4 | % function [Field,VelTypeOut]=read_civxdata(filename,FieldNames,VelType)
|
---|
| 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)
|
---|
| 12 | % .dt: time interval for the corresponding image pair
|
---|
| 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 | % .DijU; matrix of spatial derivatives (DijU(1,1,:)=DUDX,
|
---|
| 29 | % DijU(1,2,:)=DUDY, Dij(2,1,:)=DVDX, DijU(2,2,:)=DVDY
|
---|
| 30 | %
|
---|
| 31 | % VelTypeOut: velocity type corresponding to the selected field: ='civ1','interp1','interp2','civ2'....
|
---|
| 32 | %
|
---|
| 33 | % INPUT:
|
---|
| 34 | % filename: file name (string).
|
---|
| 35 | % FieldNames =cell of field names to get, which can contain the strings:
|
---|
| 36 | % 'ima_cor': image correlation, vec_c or vec2_C
|
---|
| 37 | % 'vort','div','strain': requires velocity derivatives DUDX...
|
---|
| 38 | % 'error': error estimate (vec_E or vec2_E)
|
---|
| 39 | %
|
---|
| 40 | % VelType : character string indicating the types of velocity fields to read ('civ1','civ2'...)
|
---|
| 41 | % if vel_type=[] or'*', a priority choice, given by vel_type_out{1,2}, is done depending
|
---|
| 42 | % if vel_type='filter'; a structured field is sought (filter2 in priority, then filter1)
|
---|
| 43 |
|
---|
| 44 |
|
---|
| 45 | % FUNCTIONS called:
|
---|
| 46 | % 'varcivx_generator':, sets the names of vaiables to read in the netcdf file
|
---|
| 47 | % 'nc2struct': reads a netcdf file
|
---|
| 48 |
|
---|
[380] | 49 | function [Field,VelTypeOut,errormsg]=read_civdata(filename,FieldNames,VelType,CivStage)
|
---|
[406] | 50 |
|
---|
[237] | 51 | %% default input
|
---|
| 52 | if ~exist('VelType','var')
|
---|
[246] | 53 | VelType='';
|
---|
[237] | 54 | end
|
---|
| 55 | if isequal(VelType,'*')
|
---|
[246] | 56 | VelType='';
|
---|
[237] | 57 | end
|
---|
[246] | 58 | if isempty(VelType)
|
---|
| 59 | VelType='';
|
---|
| 60 | end
|
---|
[237] | 61 | if ~exist('FieldNames','var')
|
---|
| 62 | FieldNames=[]; %default
|
---|
| 63 | end
|
---|
[406] | 64 | errormsg='';
|
---|
[237] | 65 |
|
---|
| 66 | %% reading data
|
---|
[380] | 67 | [varlist,role,units,VelTypeOut]=varcivx_generator(FieldNames,VelType,CivStage);
|
---|
[406] | 68 | if isempty(varlist)
|
---|
| 69 | erromsg=['error in read_civdata: unknow velocity type ' VelType];
|
---|
| 70 | return
|
---|
| 71 | else
|
---|
| 72 | [Field,vardetect]=nc2struct(filename,varlist);%read the variables in the netcdf file
|
---|
| 73 | end
|
---|
[237] | 74 | if isfield(Field,'Txt')
|
---|
| 75 | errormsg=Field.Txt;
|
---|
| 76 | return
|
---|
| 77 | end
|
---|
| 78 | if vardetect(1)==0
|
---|
[379] | 79 | errormsg=[ 'requested field not available in ' filename '/' VelType ': need to run patch'];
|
---|
[237] | 80 | return
|
---|
| 81 | end
|
---|
[380] | 82 | switch VelTypeOut
|
---|
| 83 | case{'civ1','civ-filter1','filter1'}
|
---|
| 84 | Field.Dt=Field.Civ1_Dt;
|
---|
| 85 | case{'civ2','civ-filter2','filter2'}
|
---|
| 86 | Field.Dt=Field.Civ2_Dt;
|
---|
[372] | 87 | end
|
---|
[380] | 88 | Field.ListGlobalAttribute=[Field.ListGlobalAttribute {'Dt'}];
|
---|
[237] | 89 | var_ind=find(vardetect);
|
---|
[389] | 90 | for ivar=1:numel(var_ind)
|
---|
[237] | 91 | Field.VarAttribute{ivar}.Role=role{var_ind(ivar)};
|
---|
| 92 | Field.VarAttribute{ivar}.Unit=units{var_ind(ivar)};
|
---|
| 93 | Field.VarAttribute{ivar}.Mesh=0.1;%typical mesh for histograms O.1 pixel
|
---|
| 94 | end
|
---|
| 95 |
|
---|
| 96 | Field.ListGlobalAttribute=[Field.ListGlobalAttribute {'NbCoord','NbDim','TimeUnit','CoordUnit'}];
|
---|
| 97 | % %% update list of global attributes
|
---|
| 98 | Field.NbCoord=2;
|
---|
| 99 | Field.NbDim=2;
|
---|
| 100 | Field.TimeUnit='s';
|
---|
| 101 | Field.CoordUnit='pixel';
|
---|
| 102 |
|
---|
| 103 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
---|
| 104 | % [var,role,units,vel_type_out]=varcivx_generator(FieldNames,vel_type)
|
---|
| 105 | %INPUT:
|
---|
| 106 | % FieldNames =cell of field names to get, which can contain the strings:
|
---|
| 107 | % 'ima_cor': image correlation, vec_c or vec2_C
|
---|
| 108 | % 'vort','div','strain': requires velocity derivatives DUDX...
|
---|
| 109 | % 'error': error estimate (vec_E or vec2_E)
|
---|
| 110 | %
|
---|
| 111 | % vel_type: character string indicating the types of velocity fields to read ('civ1','civ2'...)
|
---|
[380] | 112 | % if vel_type=[] or'*', a priority choice is done, civ2 considered better than civ1 )
|
---|
[237] | 113 |
|
---|
[406] | 114 | function [var,role,units,vel_type_out,errormsg]=varcivx_generator(FieldNames,vel_type,CivStage)
|
---|
[237] | 115 |
|
---|
| 116 | %% default input values
|
---|
[246] | 117 | if ~exist('vel_type','var'),vel_type='';end;
|
---|
[237] | 118 | if iscell(vel_type),vel_type=vel_type{1}; end;%transform cell to string if needed
|
---|
| 119 | if ~exist('FieldNames','var'),FieldNames={'ima_cor'};end;%default scalar
|
---|
| 120 | if ischar(FieldNames), FieldNames={FieldNames}; end;
|
---|
[406] | 121 | errormsg='';
|
---|
[237] | 122 |
|
---|
| 123 | %% select the priority order for automatic vel_type selection
|
---|
| 124 | testder=0;
|
---|
[246] | 125 | testpatch=0;
|
---|
[237] | 126 | for ilist=1:length(FieldNames)
|
---|
| 127 | if ~isempty(FieldNames{ilist})
|
---|
[389] | 128 | switch FieldNames{ilist}
|
---|
| 129 | case{'u','v'}
|
---|
| 130 | testpatch=1;
|
---|
| 131 | case {'vort','div','strain'}
|
---|
| 132 | testder=1;
|
---|
| 133 | end
|
---|
[237] | 134 | end
|
---|
[389] | 135 | end
|
---|
[406] | 136 | if isempty(vel_type)||strcmp(vel_type,'*')
|
---|
[380] | 137 | switch CivStage
|
---|
| 138 | case {6} %filter2 available
|
---|
| 139 | vel_type='civ2';
|
---|
| 140 | case {4,5}% civ2 available but not filter2
|
---|
| 141 | if testder% derivatives needed
|
---|
| 142 | vel_type='civ1';
|
---|
| 143 | else
|
---|
| 144 | vel_type='civ2';
|
---|
| 145 | end
|
---|
| 146 | case {1,2,3}% civ1 available but not civ2
|
---|
| 147 | vel_type='civ1';
|
---|
| 148 | end
|
---|
| 149 | end
|
---|
| 150 | if strcmp(vel_type,'civ2') && testder
|
---|
| 151 | vel_type='filter2';
|
---|
[382] | 152 | elseif strcmp(vel_type,'civ1') && testder
|
---|
[380] | 153 | vel_type='filter1';
|
---|
| 154 | end
|
---|
[406] | 155 | var={};
|
---|
[246] | 156 | switch vel_type
|
---|
[389] | 157 | case 'civ1'
|
---|
| 158 | var={'X','Y','Z','U','V','W','C','F','FF','Coord_tps','U_tps','V_tps','W_tps','SubRange','NbSites';...
|
---|
[380] | 159 | 'Civ1_X','Civ1_Y','Civ1_Z','Civ1_U','Civ1_V','Civ1_W','Civ1_C','Civ1_F','Civ1_FF',...
|
---|
[389] | 160 | 'Civ1_Coord_tps','Civ1_U_tps','Civ1_V_tps','Civ1_W_tps','Civ1_SubRange','Civ1_NbSites'};
|
---|
[397] | 161 | role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag','coord_tps','vector_x_tps',...
|
---|
| 162 | 'vector_y_tps','vector_z_tps','ancillary','ancillary'};
|
---|
[389] | 163 | units={'pixel','pixel','pixel','pixel','pixel','pixel','','','','pixel','pixel','pixel','pixel','pixel',''};
|
---|
| 164 | case 'filter1'
|
---|
| 165 | var={'X','Y','Z','U','V','W','C','F','FF','Coord_tps','U_tps','V_tps','W_tps','SubRange','NbSites';...
|
---|
| 166 | 'Civ1_X','Civ1_Y','Civ1_Z','Civ1_U_smooth','Civ1_V_smooth','Civ1_W','Civ1_C','Civ1_F','Civ1_FF',...
|
---|
| 167 | 'Civ1_Coord_tps','Civ1_U_tps','Civ1_V_tps','Civ1_W_tps','Civ1_SubRange','Civ1_NbSites'};
|
---|
[397] | 168 | role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag','coord_tps','vector_x_tps',...
|
---|
| 169 | 'vector_y_tps','vector_z_tps','ancillary','ancillary'};
|
---|
[389] | 170 | units={'pixel','pixel','pixel','pixel','pixel','pixel','','','','pixel','pixel','pixel','pixel','pixel',''};
|
---|
| 171 | case 'civ2'
|
---|
| 172 | var={'X','Y','Z','U','V','W','C','F','FF','Coord_tps','U_tps','V_tps','W_tps','SubRange','NbSites';...
|
---|
[380] | 173 | 'Civ2_X','Civ2_Y','Civ2_Z','Civ2_U','Civ2_V','Civ2_W','Civ2_C','Civ2_F','Civ2_FF',...
|
---|
[389] | 174 | 'Civ2_Coord_tps','Civ2_U_tps','Civ2_V_tps','','Civ2_SubRange','Civ2_NbSites'};
|
---|
[397] | 175 | role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag','coord_tps','vector_x_tps',...
|
---|
| 176 | 'vector_y_tps','vector_z_tps','ancillary','ancillary'};
|
---|
[389] | 177 | units={'pixel','pixel','pixel','pixel','pixel','pixel','','','','pixel','pixel','pixel','pixel','pixel',''};
|
---|
| 178 | case 'filter2'
|
---|
| 179 | var={'X','Y','Z','U','V','W','C','F','FF','Coord_tps','U_tps','V_tps','W_tps','SubRange','NbSites';...
|
---|
| 180 | 'Civ2_X','Civ2_Y','Civ2_Z','Civ2_U_smooth','Civ2_V_smooth','Civ2_W','Civ2_C','Civ2_F','Civ2_FF',...
|
---|
| 181 | 'Civ2_Coord_tps','Civ2_U_tps','Civ2_V_tps','','Civ2_SubRange','Civ2_NbSites'};
|
---|
[397] | 182 | role={'coord_x','coord_y','coord_z','vector_x','vector_y','vector_z','ancillary','warnflag','errorflag','coord_tps','vector_x_tps',...
|
---|
| 183 | 'vector_y_tps','vector_z_tps','ancillary','ancillary'};
|
---|
[389] | 184 | units={'pixel','pixel','pixel','pixel','pixel','pixel','','','','pixel','pixel','pixel','pixel','pixel',''};
|
---|
[246] | 185 | end
|
---|
[380] | 186 | vel_type_out=vel_type;
|
---|
[237] | 187 |
|
---|
| 188 |
|
---|
| 189 |
|
---|
[246] | 190 |
|
---|
| 191 |
|
---|