Parent Directory
|
Revision Log
|
Revision Graph
- convert2pcol.m and convert2vector.m : as done earlier for convert2array.m, simplify the logic, add help section, move routines to gcmfaces_convert - convert2pcol_cube.m etc., line_greatC_TUV_MASKS_v3, input_list_check.m : update accordingly
1 | gforget | 1.1 | function [X,Y,FLD]=convert2pcol(varargin); |
2 | |||
3 | c=varargin{1}; | ||
4 | |||
5 | if strcmp(c.gridType,'llc'); | ||
6 | [X,Y,FLD]=convert2pcol_llc(varargin{:}); | ||
7 | elseif strcmp(c.gridType,'cube'); | ||
8 | [X,Y,FLD]=convert2pcol_cube(varargin{:}); | ||
9 | elseif strcmp(c.gridType,'llpc'); | ||
10 | [X,Y,FLD]=convert2pcol_llpc(varargin{:}); | ||
11 | elseif strcmp(c.gridType,'ll'); | ||
12 | [X,Y,FLD]=convert2pcol_ll(varargin{:}); | ||
13 | else; | ||
14 | error(['convert2pcol not implemented for ' c.gridType '!?']); | ||
15 | end; | ||
16 |
ViewVC Help | |
Powered by ViewVC 1.1.22 |