Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ available:
* bottleneck
* basemap
* lxml
* nco >= 4.6.8
* nco >= 4.7.0
* pyproj
* pillow

Expand Down
1 change: 1 addition & 0 deletions mpas_analysis/shared/climatology/mpas_climatology_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,7 @@ def _compute_climatologies_with_ncclimo(self, inDirectory, outDirectory,
parallelMode = self.config.get('execute', 'ncclimoParallelMode')

args = ['ncclimo',
'-4',
'--clm_md=mth',
'-a', 'sdd',
'-m', self.ncclimoModel,
Expand Down
2 changes: 1 addition & 1 deletion mpas_analysis/shared/time_series/mpas_time_series_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def _compute_time_series_with_ncrcat(self):
variableList = self.variableList + ['xtime_startMonthly',
'xtime_endMonthly']

args = ['ncrcat', '--record_append', '--no_tmp_fl',
args = ['ncrcat', '-4', '--record_append', '--no_tmp_fl',
'-v', ','.join(variableList)]

printCommand = '{} {} ... {} {}'.format(' '.join(args), inputFiles[0],
Expand Down