File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
geometric_features/aggregation/ocean Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments