Skip to content

Commit

Permalink
Add missing full stop for TIME:comment on CTD casts.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggalibert committed Nov 10, 2016
1 parent 7fc6700 commit 74f5254
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Parser/SBE19Parse.m
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
sample_data.variables{end}.name = 'TIME';
sample_data.variables{end}.typeCastFunc = str2func(netcdf3ToMatlabType(imosParameters(sample_data.variables{end}.name, 'type')));
sample_data.variables{end}.data = sample_data.variables{end}.typeCastFunc([descendingTime, ascendingTime]);
sample_data.variables{end}.comment = 'First value over profile measurement';
sample_data.variables{end}.comment = 'First value over profile measurement.';

sample_data.variables{end+1}.dimensions = dimensions;
sample_data.variables{end}.name = 'DIRECTION';
Expand Down
2 changes: 1 addition & 1 deletion Parser/readXR420.m
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
sample_data.variables{end}.name = 'TIME';
sample_data.variables{end}.typeCastFunc = str2func(netcdf3ToMatlabType(imosParameters(sample_data.variables{end}.name, 'type')));
sample_data.variables{end}.data = sample_data.variables{end}.typeCastFunc([descendingTime, ascendingTime]);
sample_data.variables{end}.comment = 'First value over profile measurement';
sample_data.variables{end}.comment = 'First value over profile measurement.';

sample_data.variables{end+1}.dimensions = dimensions;
sample_data.variables{end}.name = 'DIRECTION';
Expand Down
2 changes: 1 addition & 1 deletion Parser/readXR620.m
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
sample_data.variables{end}.name = 'TIME';
sample_data.variables{end}.typeCastFunc = str2func(netcdf3ToMatlabType(imosParameters(sample_data.variables{end}.name, 'type')));
sample_data.variables{end}.data = sample_data.variables{end}.typeCastFunc([descendingTime, ascendingTime]);
sample_data.variables{end}.comment = 'First value over profile measurement';
sample_data.variables{end}.comment = 'First value over profile measurement.';

sample_data.variables{end+1}.dimensions = dimensions;
sample_data.variables{end}.name = 'DIRECTION';
Expand Down

0 comments on commit 74f5254

Please sign in to comment.