Skip to content

Commit 689b822

Browse files
authored
Merge pull request #176 from xylar/atlantic_moc_without_med
Add Atlantic MOC without Mediterranean
2 parents a686aa3 + 979cb8f commit 689b822

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

docs/versions.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Documentation On GitHub
1515
`v0.2.0`_ `0.2.0`_
1616
`v0.3.0`_ `0.3.0`_
1717
`v0.4.0`_ `0.4.0`_
18+
`v0.5.0`_ `0.5.0`_
1819
================ ===============
1920

2021
.. _`stable`: ../stable/index.html
@@ -39,3 +40,5 @@ Documentation On GitHub
3940
.. _`0.3.0`: https://github.com/MPAS-Dev/geometric_features/tree/0.3.0
4041
.. _`v0.4.0`: ../0.4.0/index.html
4142
.. _`0.4.0`: https://github.com/MPAS-Dev/geometric_features/tree/0.4.0
43+
.. _`v0.5.0`: ../0.5.0/index.html
44+
.. _`0.5.0`: https://github.com/MPAS-Dev/geometric_features/tree/0.5.0

geometric_features/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
from geometric_features.utils import write_feature_names_and_tags
1414

1515

16-
__version_info__ = (0, 4, 0)
16+
__version_info__ = (0, 5, 0)
1717
__version__ = '.'.join(str(vi) for vi in __version_info__)

geometric_features/aggregation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_aggregator_by_name(region_group):
5454
'date': '20210201',
5555
'function': ismip6},
5656
'MOC Basins': {'prefix': 'mocBasins',
57-
'date': '20210331',
57+
'date': '20210623',
5858
'function': moc},
5959
'Transport Transects': {'prefix': 'transportTransects',
6060
'date': '20210323',

geometric_features/aggregation/ocean/moc_basins.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ def moc(gf):
2424
# -------
2525
# Xylar Asay-Davis
2626

27-
MOCSubBasins = {'Atlantic': ['Atlantic', 'Mediterranean'],
27+
MOCSubBasins = {'Atlantic': ['Atlantic'],
28+
'AtlanticMed': ['Atlantic', 'Mediterranean'],
2829
'IndoPacific': ['Pacific', 'Indian'],
2930
'Pacific': ['Pacific'],
3031
'Indian': ['Indian']}
3132

3233
MOCSouthernBoundary = {'Atlantic': '34S',
34+
'AtlanticMed': '34S',
3335
'IndoPacific': '34S',
3436
'Pacific': '6S',
3537
'Indian': '6S'}

recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "geometric_features" %}
2-
{% set version = "0.4.0" %}
2+
{% set version = "0.5.0" %}
33
{% set build = 0 %}
44

55
package:

0 commit comments

Comments
 (0)