Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CTD_Chipod/mfiles/MakeCasts_CTDchipod_function.m
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ function MakeCasts_CTDchipod_function(the_project,mixpath)
end
chi_up.ctd.bin=datau_1m;
chi_up.ctd.raw=CTD_24hz;
chi_uo.time_offset_correction_used=chidat.time_offset_correction_used;
chi_up.time_offset_correction_used=chidat.time_offset_correction_used;

% downcast
chi_dn=struct();
Expand Down
2 changes: 1 addition & 1 deletion CTD_Chipod/mfiles/PlotChipodDataRaw_General.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function PlotChipodDataRaw_General(the_project,mixpath)

% make list of all the data files we have
%chi_file_list=dir( fullfile(data_dir,['/*' whSN '*']))
chi_file_list = dir( fullfile(data_dir));
chi_file_list = dir( fullfile(data_dir,'*.mlg'));
Nfiles = length(chi_file_list);

disp([num2str(Nfiles) ' files found for ' num2str(whSN) ])
Expand Down
2 changes: 1 addition & 1 deletion CTD_Chipod/mfiles/SummarizeChiProc.m
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function SummarizeChiProc(the_project)
whSN=proc_info.SNs{iSN}
idg=find(proc_info.(whSN).IsChiData==1);

ax1=subplot(ceil(length(proc_info.SNs))/2,2,iSN);
ax1=subplot(ceil(length(proc_info.SNs)/2),2,iSN);
plot(proc_info.icast(idg),proc_info.(whSN).toffset(idg),'o')
hold on
idb=find(abs(proc_info.(whSN).toffset(idg))>yl(2));
Expand Down
6 changes: 3 additions & 3 deletions CTD_Chipod/mfiles/agutwocolumn.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ function agutwocolumn(vextent)
CWIDTH = 7;
CHEIGHT = 8.5*vextent;

un=get(gcf,'units');
set(gcf,'units','inches','paperpos',[0.75 0.75 CWIDTH CHEIGHT]);
set(gcf,'units',un);
un=get(gcf,'paperunits');
set(gcf,'paperunits','inches','paperpos',[0.75 0.75 CWIDTH CHEIGHT]);
set(gcf,'paperunits',un);

set(gcf,'defaultaxesfontsize',11);
set(gcf,'defaulttextfontsize',11);
Expand Down
6 changes: 3 additions & 3 deletions CTD_Chipod/mfiles/plot_XC_summaries.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@ function plot_XC_summaries(the_project)
whvar = 'KT';
end

ax = PlotChipodXC_OneVarAllSN(XC,ChiInfo,whvar) ;
ax = PlotChipodXC_OneVarAllSN(XC,ChiInfo,whvar,xvar) ;
ylim([0 5000])

axes(ax(1)) ;
title([ChiInfo.the_project ' - ' whvar])
title([the_project ' - ' whvar])

linkaxes(ax)

if saveplot==1
print(fullfile(fig_path,'XC',[ChiInfo.the_project '_' whvar '_AllSNs_Vslat']),'-dpng')
print(fullfile(fig_path,'XC',[the_project '_' whvar '_AllSNs_Vs' xvar]),'-dpng')
end

end % ivar
Expand Down