Skip to content
Snippets Groups Projects
Commit fdfa47dd authored by kgao's avatar kgao
Browse files

Removed errant print statements

parent 272ef85e
Branches
Tags
No related merge requests found
...@@ -131,8 +131,6 @@ def minuteAverages(frame): ...@@ -131,8 +131,6 @@ def minuteAverages(frame):
windSeries = windSeries.rolling(25, win_type='boxcar').mean() windSeries = windSeries.rolling(25, win_type='boxcar').mean()
print(windSeries)
newFrame['wind_speed'] = windSeries newFrame['wind_speed'] = windSeries
if 'wind_direction' in columns: if 'wind_direction' in columns:
...@@ -277,14 +275,10 @@ def createMultiple(filenames, outputFilenames, zlib, chunkSize): ...@@ -277,14 +275,10 @@ def createMultiple(filenames, outputFilenames, zlib, chunkSize):
for idx, filename in enumerate(filenames): for idx, filename in enumerate(filenames):
results.append(createGiantNetCDF(None, None, [filename], outputFilenames[idx], zlib, chunkSize)) results.append(createGiantNetCDF(None, None, [filename], outputFilenames[idx], zlib, chunkSize))
print(results)
allFalse = True allFalse = True
for result in results: for result in results:
if result == True: if result == True:
print('here')
print(result)
allFalse = False allFalse = False
if allFalse == True: if allFalse == True:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment