Skip to content

Commit

Permalink
Merge pull request #904 from xylar/fix_transect_remap_with_cf_time
Browse files Browse the repository at this point in the history
Don't decode time as part of transect remapping
  • Loading branch information
xylar authored Sep 26, 2022
2 parents f2eaa8e + 4d69d4b commit afdd3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpas_analysis/ocean/compute_transects_subtask.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def run_task(self):
remappedFileName = self.get_remapped_file_name(
season, comparisonGridName=self.transectCollectionName)

ds = xr.open_dataset(remappedFileName)
ds = xr.open_dataset(remappedFileName, decode_times=False)
transectNames = list(obsDatasets.keys())
for transectIndex, transectName in enumerate(transectNames):
self.logger.info(' {}'.format(transectName))
Expand Down

0 comments on commit afdd3d5

Please sign in to comment.