/[MITgcm]/MITgcm_contrib/gael/profilesMatlabProcessing/profiles_process_init.m
ViewVC logotype

Annotation of /MITgcm_contrib/gael/profilesMatlabProcessing/profiles_process_init.m

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


Revision 1.5 - (hide annotations) (download)
Wed Jan 5 22:14:22 2011 UTC (14 years, 6 months ago) by gforget
Branch: MAIN
Changes since 1.4: +1 -1 lines
- remove gen.grid dir from path
- add profiles_devel to path

1 gforget 1.1
2 gforget 1.4 global MITprof_verbose; %to print notes to screen
3     if isempty(MITprof_verbose); MITprof_verbose=2; end;
4 gforget 1.2
5 gforget 1.4 if MITprof_verbose;
6 gforget 1.1 fprintf('adding directories to your path\n');
7 gforget 1.2 fprintf('===============================\n\n')
8 gforget 1.4 end;
9 gforget 1.1
10 gforget 1.4 global mydir; mydir=[pwd '/'];
11     fid=fopen([mydir 'MITprof_path.m'],'wt');
12     aa=sprintf(['global mydir; mydir=''' mydir ''';\n']);
13     aa=sprintf([aa 'addpath ' mydir ';\n']);
14     aa=sprintf([aa 'addpath ' mydir 'profiles_IO_v2/;\n']);
15     aa=sprintf([aa 'addpath ' mydir 'profiles_IO_external/;\n']);
16     aa=sprintf([aa 'addpath ' mydir 'profiles_misc/;\n']);
17     aa=sprintf([aa 'addpath ' mydir 'profiles_process_main_v2/;\n']);
18 gforget 1.5 aa=sprintf([aa 'addpath ' mydir 'profiles_devel/\n;']);
19 gforget 1.4 eval(aa);
20     fid=fopen([mydir 'MITprof_path.m'],'wt'); fprintf(fid,aa); fclose(fid);
21 gforget 1.1
22 gforget 1.4
23     fprintf('\n\n basic MITprof test: started... \n');
24 gforget 1.1
25 gforget 1.4 if MITprof_verbose;
26     fprintf('\nrunning main program on sample data sets\n')
27 gforget 1.2 fprintf('========================================\n\n')
28 gforget 1.4 end;
29 gforget 1.1
30     %select the data source (and specific params) => wod05 sample
31     dataset=profiles_prep_select('wod05','90CTD');
32     %process it
33     profiles_prep_main;
34     %
35 gforget 1.4 fprintf(['\n\n wod05 sample -- done -- ' dataset.dirOut dataset.fileOut '.nc was created \n\n']);
36 gforget 1.1
37     %select the data source (and specific params) => argo sample
38     dataset=profiles_prep_select('argo','indian');
39     %process it
40     profiles_prep_main;
41     %
42 gforget 1.4 fprintf(['\n\nargo sample -- done -- ' dataset.dirOut dataset.fileOut '.nc was created \n\n']);
43 gforget 1.1
44 gforget 1.4 fprintf('\n basic MITprof test: completed. \n');
45 gforget 1.1

  ViewVC Help
Powered by ViewVC 1.1.22