Skip to content

Commit a6e7fbb

Browse files
authored
docs: minor fixes in the docstrings for Cutout (#410)
1 parent 2d4504c commit a6e7fbb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

atlite/cutout.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ def __init__(self, path, **cutoutparams):
112112
Frequency of the time coordinate. The default is 'h'. Valid are all
113113
pandas offset aliases.
114114
chunks : dict
115-
Chunks when opening netcdf files. For cutout preparation recommand
116-
to chunk only along the time dimension. Defaults to {'time': 20}
115+
Chunks when opening NetCDF files. For cutout preparation it is recommended
116+
to chunk only along the time dimension. Defaults to {'time': 100}
117117
data : xr.Dataset
118118
User provided cutout data. Save the cutout using `Cutout.to_file()`
119119
afterwards.
@@ -131,7 +131,7 @@ def __init__(self, path, **cutoutparams):
131131
sarah data which has missing data for areas where dawn and
132132
nightfall happens (ca. 30 min gap).
133133
gebco_path: str
134-
Path to find the gebco netcdf file. Only necessary when including
134+
Path to find the gebco NetCDF file. Only necessary when including
135135
the gebco module.
136136
parallel : bool, default False
137137
Whether to open dataset in parallel mode. Take effect for all
@@ -440,7 +440,7 @@ def merge(self, other, path=None, **kwargs):
440440

441441
def to_file(self, fn=None):
442442
"""
443-
Save cutout to a netcdf file.
443+
Save cutout to a NetCDF file.
444444
445445
Parameters
446446
----------

0 commit comments

Comments
 (0)