/[MITgcm]/MITgcm/utils/matlab/merccube.m
ViewVC logotype

Annotation of /MITgcm/utils/matlab/merccube.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.6 - (hide annotations) (download)
Thu Sep 15 20:07:45 2005 UTC (18 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +0 -0 lines
FILE REMOVED
moved from utils/matlab to utils/matlab/cs_grid.

1 adcroft 1.1 function [] = merccube(XX,YY,C)
2 adcroft 1.2 % merccube(x,y,c)
3 adcroft 1.1 %
4 adcroft 1.2 % Plots cubed-sphere data in mercator projection. (x,y) are
5 adcroft 1.1 % coordinates, c is cell-centered scalar to be plotted.
6 adcroft 1.2 % All arrays (x,y,c) should have dimensions of NxNx6 or 6NxN.
7     %
8     % The default plotting mode is shading faceted. Using this or
9     % shading flat, (x,y) should be the coordinates of grid-corners
10     % and can legitimately have dimension (N+1)x(N+1)x6.
11     %
12     % If using shading interp, then (x,y) must be the coordinates of
13     % the cell centers.
14 adcroft 1.1 %
15     % e.g.
16     %
17     % xg=rdmds('XG');
18     % yg=rdmds('YG');
19     % ps=rdmds('Eta.0000000000');
20     % mercube(xg,yg,ps);
21     % colorbar;xlabel('Longitude');ylabel('Latitude');
22 adcroft 1.2 %
23     % xc=rdmds('XC');
24     % yc=rdmds('YC');
25     % mercube(xc,yc,ps);shading interp
26 adcroft 1.1
27     if max(max(max(YY)))-min(min(min(YY))) < 3*pi
28     X=XX*180/pi;
29     Y=YY*180/pi;
30     else
31     X=XX;
32     Y=YY;
33     end
34     Q=C;
35    
36 adcroft 1.5 if ndims(Q)==2 & size(Q,1)==6*size(Q,2)
37 adcroft 1.1 [nx ny nt]=size(X);
38     X=permute( reshape(X,[nx/6 6 ny]),[1 3 2]);
39     Y=permute( reshape(Y,[nx/6 6 ny]),[1 3 2]);
40     Q=permute( reshape(Q,[nx/6 6 ny]),[1 3 2]);
41 adcroft 1.5 elseif ndims(Q)==3 & size(Q,2)==6
42 adcroft 1.1 X=permute( X,[1 3 2]);
43     Y=permute( Y,[1 3 2]);
44     Q=permute( Q,[1 3 2]);
45 adcroft 1.5 elseif ndims(Q)==3 & size(Q,3)==6
46 adcroft 1.1 [nx ny nt]=size(X);
47     else
48     size(XX)
49     size(YY)
50     size(C)
51     error('Dimensions should be 2 or 3 dimensions: NxNx6, 6NxN or Nx6xN');
52     end
53    
54     if size(X,1)==size(Q,1)
55     X(end+1,:,:)=NaN;
56     X(:,end+1,:)=NaN;
57     X(end,:,[1 3 5])=X(1,:,[2 4 6]);
58     X(:,end,[2 4 6])=X(:,1,[3 5 1]);
59     X(:,end,[1 3 5])=squeeze(X(1,end:-1:1,[3 5 1]));
60     X(end,:,[2 4 6])=squeeze(X(end:-1:1,1,[4 6 2]));
61     Y(end+1,:,:)=NaN;
62     Y(:,end+1,:)=NaN;
63     Y(end,:,[1 3 5])=Y(1,:,[2 4 6]);
64     Y(:,end,[2 4 6])=Y(:,1,[3 5 1]);
65     Y(:,end,[1 3 5])=squeeze(Y(1,end:-1:1,[3 5 1]));
66     Y(end,:,[2 4 6])=squeeze(Y(end:-1:1,1,[4 6 2]));
67     end
68     [nx ny nt]=size(X);
69    
70 adcroft 1.5 Q(end+1,:,:)=NaN;
71     Q(:,end+1,:)=NaN;
72 adcroft 1.1 Q(end,:,[1 3 5])=Q(1,:,[2 4 6]);
73     Q(:,end,[2 4 6])=Q(:,1,[3 5 1]);
74     Q(:,end,[1 3 5])=squeeze(Q(1,end:-1:1,[3 5 1]));
75     Q(end,:,[2 4 6])=squeeze(Q(end:-1:1,1,[4 6 2]));
76    
77     hnx=ceil(nx/2);
78     hny=ceil(ny/2);
79    
80     for k=1:6;
81     i=1:hnx;
82     x=longitude(X(i,:,k));
83     pcolor(x,Y(i,:,k),Q(i,:,k))
84     axis([-180 180 -90 90])
85     hold on
86     if max(max(max(x)))>180
87     pcolor(x-360,Y(i,:,k),Q(i,:,k))
88     end
89     i=hnx:nx;
90     x=longitude(X(i,:,k));
91     pcolor(x,Y(i,:,k),Q(i,:,k))
92     if max(max(max(x)))>180
93     pcolor(x-360,Y(i,:,k),Q(i,:,k))
94     end
95     end
96     hold off

  ViewVC Help
Powered by ViewVC 1.1.22