--- MITgcm_contrib/osse/utils/cart2cyl.m 2004/07/13 16:26:51 1.2 +++ MITgcm_contrib/osse/utils/cart2cyl.m 2005/01/13 15:50:36 1.4 @@ -1,43 +1,24 @@ function [z] = cart2cyl(c,thetai,rhoi,varargin) % z=cart2cyl(c,xi,yi); % -% Re-grids model output in cylindrical coords to cartesian. -% c is a 2-D or 3-D scalar or z-vector field -% xi,yi are vectors of the new regular lat-lon grid to interpolate to. -% z is the interpolated data with dimensions of size(xi) by size(yi). -% -% e.g. -% >> t=rdmds('Ttave.0000513360'); -% >> xi=-179:2:180;yi=-89:2:90; -% >> ti=cyl2cart(t,xi,yi); -% NN=size(c); -%[theta rho nz]=size(c); [x y nz]=size(c); -%[RHO,THETA] = meshgrid(1:rho,-pi+2*pi/theta:2*pi/theta:pi); -[Y,X] = meshgrid(-(x-1)/2:(x-1)/2,-(y-1)/2:(y-1)/2); -%[x,y] = pol2cart(THETA,RHO); +stepx=(x+1)/(x); +stepy=(y+1)/(y); +[Y,X] = meshgrid(-(x)/2:stepx:(x)/2,-(y)/2:stepy:(y)/2); [theta,rho] = cart2pol(X,Y); -theta=(theta./(pi*2)+0.5).*size(thetai,2); -rho=max(rhoi)*rho/((x-1)/2); -%theta=rot90(theta.*180./pi,-1); -%[nx ny nz]=size(c); -%nx=theta;ny=rho; +theta=(theta./(pi*2)+0.5).*(size(thetai,2)); +rho=max(rhoi)*rho/((x)/2); ntheta=x;nrho=y; -%X=reshape(x,[1 nx*ny]); -%Y=reshape(y,[1 nx*ny]); THETA=reshape(theta,[1 ntheta*nrho]); RHO=reshape(rho,[1 ntheta*nrho]); -%del=griddata_preprocess(Y,X,yi,xi',varargin{:}); del=griddata_preprocess(RHO,THETA,rhoi,thetai',varargin{:}); for k=1:nz; C=reshape(c(:,:,k),[1 ntheta*nrho]); z(:,:,k)=griddata(RHO,THETA,C,rhoi,thetai',varargin{:}); -%z(:,:,k)=griddata(Y,X,C,yi,xi',varargin{:}); -% z(:,:,k)=griddata_fast(del,[C C(il) C(ig)],varargin{:}); end % k % Split vertical and time dimensions