Skip to content

Commit

Permalink
lowercase the "Snowpack" xarray coordinate in the result of smrt comp…
Browse files Browse the repository at this point in the history
…utation (this change introduces backward incompatibility when referring explicitly to the Snowpack coordinate in user code).
  • Loading branch information
ghislainp committed Aug 29, 2019
1 parent 00b3f08 commit fbaf276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smrt/core/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def run(self, sensor, snowpack, atmosphere=None, snowpack_dimension=None, progre

if isinstance(snowpack, Sequence):
if snowpack_dimension is None:
dimension_name, dimension_values = "Snowpack", None
dimension_name, dimension_values = "snowpack", None
else:
dimension_name, dimension_values = snowpack_dimension
if dimension_values is None:
Expand Down

0 comments on commit fbaf276

Please sign in to comment.