Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Commit

Permalink
Individual contour save methods
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleresterly committed Nov 14, 2017
1 parent c555077 commit cf5a8c4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions WDRT/ESSC.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def getSamples():
additional contour methods planned for future release.'''
return

def saveData(self, fileName=None):
def saveContour(self, fileName=None):
'''Saves all available data obtained via the EA module to
a .h5 file
Expand All @@ -80,9 +80,6 @@ def saveData(self, fileName=None):
gp = f.create_group('parameters')
self._saveParams(gp)

if(self.buoy.Hs is not None):
self.buoy._saveData(fileObj=f)

if(self.Hs_ReturnContours is not None):
grc = f.create_group('ReturnContours')
f_T_Return = grc.create_dataset('T_Return', data=self.T_ReturnContours)
Expand Down

0 comments on commit cf5a8c4

Please sign in to comment.