diff --git a/CHANGELOG b/CHANGELOG index 9fcc9248997321a86a4f290959f57b288780be2f..29fe7e8cb83b73cc884aab4390176fd35696f14d 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +2.1.4 + 2022/MM/DD + - Bug on get gridded temporal profile in rotated-nested projections (#54) + 2.1.3 2022/03/17 - NEI preproc (#49) diff --git a/hermesv3_gr/modules/temporal/temporal.py b/hermesv3_gr/modules/temporal/temporal.py index 256246fb3c411d7a51e159dd065cab12da61a813..db60109ae803ae48fef9f9afd7d6bd78bf261a4a 100755 --- a/hermesv3_gr/modules/temporal/temporal.py +++ b/hermesv3_gr/modules/temporal/temporal.py @@ -193,7 +193,7 @@ class TemporalDistribution(object): def get_gridded_temporal_profile(self, profile_value, profile_path): from netCDF4 import Dataset nc_in = Dataset(profile_path, mode='r') - if self.grid.grid_type == 'rotated': + if self.grid.grid_type in ['rotated','rotated_nested']: lat_name = 'rlat' lon_name = 'rlon' elif self.grid.grid_type in ['mercator', 'lcc']: