Skip to content

Commit 6cf5579

Browse files
committed
delete print
1 parent e473eb1 commit 6cf5579

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/py_eddy_tracker/global_tracking.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,9 @@ def create_variable(self, handler_nc, kwargs_variable,
3737

3838
def write_netcdf(self):
3939
"""Write a netcdf with eddy
40-
Write eddy property data to tracks.
40+
Write eddy property data to tracks.
4141
"""
4242
eddy_size = len(self.eddy.tmp_observations)
43-
print dir(self)
44-
exit()
4543
filename = '%s_%s.nc' % (self.sign_type, self.date.strftime('%Y%m%d'))
4644
with Dataset(filename, 'w', format='NETCDF4') as h_nc:
4745
logging.info('Create intermediary file %s', filename)

src/scripts/EddyIdentification

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ if __name__ == '__main__':
141141
# For subsampling to get identical list as old_AVISO use:
142142
# AVISO_FILES = AVISO_FILES[5:-5:7]
143143
if AVISO_DT14 and AVISO_DT14_SUBSAMP:
144-
print AVISO_FILES
145144
AVISO_FILES = AVISO_FILES[5:-5:np.int(DAYS_BTWN_RECORDS)]
146145

147146
# Set up a grid object using first AVISO file in the list

0 commit comments

Comments
 (0)