31 |
%select the data source (and specific params) => wod05 sample |
%select the data source (and specific params) => wod05 sample |
32 |
dataset=profiles_prep_select('wod05','90CTD'); |
dataset=profiles_prep_select('wod05','90CTD'); |
33 |
%process it |
%process it |
34 |
profiles_prep_main; |
profiles_prep_main(dataset); |
35 |
% |
% |
36 |
fprintf(['\n\n wod05 sample -- done -- ' dataset.dirOut dataset.fileOut '.nc was created \n\n']); |
fprintf(['\n\n wod05 sample -- done -- ' dataset.dirOut dataset.fileOut '.nc was created \n\n']); |
37 |
|
|
38 |
%select the data source (and specific params) => argo sample |
%select the data source (and specific params) => argo sample |
39 |
dataset=profiles_prep_select('argo','indian'); |
dataset=profiles_prep_select('argo','indian'); |
40 |
%process it |
%process it |
41 |
profiles_prep_main; |
profiles_prep_main(dataset); |
42 |
% |
% |
43 |
fprintf(['\n\nargo sample -- done -- ' dataset.dirOut dataset.fileOut '.nc was created \n\n']); |
fprintf(['\n\nargo sample -- done -- ' dataset.dirOut dataset.fileOut '.nc was created \n\n']); |
44 |
|
|
45 |
|
%select the data source (and specific params) => odv sample |
46 |
|
dataset=profiles_prep_select('odv','ODVcompact_sample'); |
47 |
|
%process it |
48 |
|
profiles_prep_main(dataset); |
49 |
|
% |
50 |
|
fprintf(['\n\nodv sample -- done -- ' dataset.dirOut dataset.fileOut '.nc was created \n\n']); |
51 |
|
|
52 |
fprintf('\n basic MITprof test: completed. \n'); |
fprintf('\n basic MITprof test: completed. \n'); |
53 |
|
|