--- MITgcm_contrib/enderton/Diagnostics/DiagLoad.m 2005/01/31 21:26:32 1.2 +++ MITgcm_contrib/enderton/Diagnostics/DiagLoad.m 2005/02/01 18:49:28 1.3 @@ -16,7 +16,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Currently the function can handle time averages (dat=='Tav'), which must -% be monthly mean, and instantaneous data (dat=='Int'). There is also an +% be monthly mean, and instantaneous data (dat=='Ins'). There is also an % option for generic data (dat=='Non') which, if the field name is exactly % specified, is able to load any type file. if isequal(dat,'Tav') @@ -166,7 +166,7 @@ if isequal(dat,'Tav') U = DiagLoad_Local('uVel',dat,dad,grd,itr,ddf,filesuffix,mnchandle); V = DiagLoad_Local('vVel',dat,dad,grd,itr,ddf,filesuffix,mnchandle); - else isequal(dat,'Int') + else isequal(dat,'Ins') U = DiagLoad_Local('U',dat,dad,grd,itr,ddf,filesuffix,mnchandle); V = DiagLoad_Local('V',dat,dad,grd,itr,ddf,filesuffix,mnchandle); end @@ -206,7 +206,7 @@ if isequal(dat,'Tav') U = DiagLoad_Local('uVel',dat,dad,grd,itr,ddf,filesuffix,mnchandle); V = DiagLoad_Local('vVel',dat,dad,grd,itr,ddf,filesuffix,mnchandle); - else isequal(dat,'Int') + else isequal(dat,'Ins') U = DiagLoad_Local('U',dat,dad,grd,itr,ddf,filesuffix,mnchandle); V = DiagLoad_Local('V',dat,dad,grd,itr,ddf,filesuffix,mnchandle); end