Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchharley committed May 8, 2023
1 parent 8803507 commit 1bcec53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GUI/CSPGsaveShoreline.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function CSPGsaveShoreline(handles)
data = sl.UTM';
savefname = strrep(savefname,'.mat','.csv');
fid = fopen(fullfile(savedir,savefname),'w');
fprintf(fid,'%s\r\n','Eastings,Northings,Elevation')
fprintf(fid,'%0.2f,%0.2f,%0.2f\r\n',data)
fclose(fid)
fprintf(fid,'%s\r\n','Eastings,Northings,Elevation');
fprintf(fid,'%0.2f,%0.2f,%0.2f\r\n',data);
fclose(fid);

disp('Shoreline saved to DB!')
end
Expand Down

0 comments on commit 1bcec53

Please sign in to comment.