Changeset 93 for trunk/src/read_civxdata.m
- Timestamp:
- May 27, 2010, 7:25:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/read_civxdata.m
r19 r93 1 1 %'read_civxdata': reads civx data from netcdf files 2 %------------------------------------------------------------------3 % COMBINE ET REMPLACE read_ncfield, read_vel et read_scalar_new4 2 %------------------------------------------------------------------ 5 3 % OUTPUT: … … 20 18 % .CoordType: expresses the type of coordinate ('px' for image, 'sig' for instruments, or 'phys') 21 19 % .dt: time interval for the corresponding image pair 22 % .CivStage: =0, ??? A UTILISER POUR REMPLACER civ23 %=1, civ1 has been performed only24 %=2, fix1 has been performed25 %=3, pacth1 has been performed26 %=4, civ2 has been performed27 %=5, fix2 has been performed28 %=6, pacth2 has been performed20 % .CivStage: =0, 21 % =1, civ1 has been performed only 22 % =2, fix1 has been performed 23 % =3, pacth1 has been performed 24 % =4, civ2 has been performed 25 % =5, fix2 has been performed 26 % =6, pacth2 has been performed 29 27 % .X, .Y, .Z: set of vector coordinates 30 28 % .U,.V,.W: corresponding set of vector components … … 37 35 % .A, .AX, .AY: additional scalar 38 36 % dt:time interval of the image pair red from a single file, or vector with 39 40 37 % pixcmx,pixcmy: scaling factors (from the first file) 41 38 % vel_type_out: string representing the selected velocity type (civ1,civ2,filter1...) … … 68 65 FieldNames=[]; %default 69 66 end 70 71 67 VelTypeOut=VelType;%default 72 68 [var,role,units,vel_type_out_cell]=varcivx_generator(FieldNames,VelType);%determine the names of constants and variables to read … … 76 72 end 77 73 if isequal(vardetect,0) 78 Field.Txt=[ FieldNames' not accessible in ' filename '/' VelType];74 Field.Txt=[reshape(FieldNames,1,numel(FieldNames)) ' not accessible in ' filename '/' VelType]; 79 75 return 80 76 end
Note: See TracChangeset
for help on using the changeset viewer.