Skip to content

Commit efc6926

Browse files
authored
Merge pull request #231 from xylar/remove-prints
Remove prints in aggregation
2 parents 47858f8 + be98099 commit efc6926

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

geometric_features/aggregation/ocean/ice_shelf_regions.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -142,27 +142,21 @@ def ice_shelves(gf):
142142
# appropriate tags
143143
for shelfName in combinedIceShelves:
144144
subNames = combinedIceShelves[shelfName]
145-
print(shelfName)
146145

147-
print(' * merging features')
148146
fcShelf = gf.read(componentName='iceshelves', objectType='region',
149147
tags=subNames, allTags=False)
150148

151-
print(' * combining features')
152149
fcShelf = fcShelf.combine(featureName=shelfName)
153150

154151
# merge the feature for the basin into the collection of all basins
155152
fc.merge(fcShelf)
156153

157154
# build ice shelves from regions with the appropriate tags
158155
for shelfName in iceShelfNames:
159-
print(shelfName)
160156

161-
print(' * merging features')
162157
fcShelf = gf.read(componentName='iceshelves', objectType='region',
163158
tags=[shelfName])
164159

165-
print(' * combining features')
166160
fcShelf = fcShelf.combine(featureName=shelfName)
167161

168162
# merge the feature for the basin into the collection of all basins

geometric_features/aggregation/ocean/ocean_basins.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,10 @@ def basins(gf):
2828
'Southern_Ocean', 'Mediterranean']:
2929

3030
basinName = f'{oceanName}_Basin'
31-
print(oceanName)
3231

33-
print(' * merging features')
3432
fcBasin = gf.read(componentName='ocean', objectType='region',
3533
tags=[basinName])
3634

37-
print(' * combining features')
3835
fcBasin = fcBasin.combine(featureName=basinName)
3936

4037
fc.merge(fcBasin)

0 commit comments

Comments
 (0)