Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
alexolinhager committed Oct 29, 2024
1 parent 74e75e7 commit d483e79
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 3 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion geometric_features/aggregation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_aggregator_by_name(region_group):
'function': greenland},
'Greenland Landice Regions': {'prefix':'greenlandLandiceRegions',
'date':'20241017',
'function':'greenland_landice'},
'function': greenland_landice},
'ISMIP6 Regions': {'prefix': 'ismip6Regions',
'date': '20210201',
'function': ismip6},
Expand Down
7 changes: 6 additions & 1 deletion geometric_features/test/test_aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from geometric_features import GeometricFeatures
from geometric_features.aggregation import get_aggregator_by_name, basins, \
subbasins, antarctic, ice_shelves, ismip6, arctic_ocean, transport, \
arctic_transport, moc, arctic_seaice
arctic_transport, moc, arctic_seaice, greenland_landice


@pytest.mark.usefixtures('loaddatadir')
Expand Down Expand Up @@ -60,3 +60,8 @@ def test_transport(self):
def test_arctic_transport(self):
gf = GeometricFeatures()
arctic_transport(gf)

def test_greenland_landice(self):
gf = GeometricFeatures()
greenland_landice(gf)

0 comments on commit d483e79

Please sign in to comment.