@@ -12,18 +12,16 @@ function complete_run(ssh_path, eddies_save_path, tracks_save_path, fake_eddies,
1212% 4. Format and process saved data so that it can be viewed in Hung's
1313% viewer that we include
1414%
15- % NOTE: The process of turning NetCDF file data into MATLAB data is
16- % partially left up to the user to do. A function will be provided that
17- % will accomplish this for the user, but the user will have to provide the
18- % variable names for what the SSH data is called, what the Latitude data is
19- % called, and what the Longitude data is called. Also, the user will either
20- % have to have this function generate a dates array (that is, what day each
21- % day of SSH data relates to) for it, or they will have to generate their
22- % own. Code will be provided in the NetCDf to MATLAB data function to
23- % assist with generating this dates array.
24- % Also, this script will not open the viewer for the user, it will leave
25- % that action up to the user. To open the viewer, all the user has to do is
26- % run the start_track_viewer script inside the tracks_viewer directory.
15+ % NOTE: The process of turning NetCDF file data into MATLAB data is not
16+ % accomplished in this function.
17+ % The function set_up_ssh_data is provided that will accomplish this for
18+ % the user, but the user will have to provide the variable names that match
19+ % the function inputs. Refer to the comments at the top of the function
20+ % set_up_ssh_data for a description of what each of the required variables are.
21+ %
22+ % This script will not open the viewer for the user.
23+ % To open the viewer, run the start_track_viewer script inside the
24+ % tracks_viewer directory.
2725
2826p = inputParser ;
2927defaultLat = NaN ;
@@ -143,7 +141,7 @@ function complete_run(ssh_path, eddies_save_path, tracks_save_path, fake_eddies,
143141 cyclonic_tracks = vars.(s{1 });
144142 eddies_save_path = modified_eddies_path ;
145143else
146- anticyclonic_tracks = track_lnn(eddies_save_path , ' anticyc' , 1 ); % Change this so it can be an optional argument in input parser
144+ anticyclonic_tracks = track_lnn(eddies_save_path , ' anticyc' , 1 ); % Possibly change this so it can be an optional argument in input parser
147145 cyclonic_tracks = track_lnn(eddies_save_path , ' cyclonic' , 1 ); % Same as above
148146end
149147save([tracks_save_path , ' anticyclonic_tracks.mat' ], ' anticyclonic_tracks' );
0 commit comments