@@ -499,7 +499,7 @@ def __copy__(
499
499
"""Returns a new EOPatch with shallow copies of given features.
500
500
501
501
:param features: A collection of features or feature types that will be copied into new EOPatch.
502
- :param copy_timestamps: Whether to copy timestamps to the new EOPatch. By default copies them over if all
502
+ :param copy_timestamps: Copy timestamps to the new EOPatch. By default copies them over if all
503
503
features are copied or if any temporal features are getting copied.
504
504
"""
505
505
if not features : # For some reason deepcopy and copy pass {} by default
@@ -526,7 +526,7 @@ def __deepcopy__(
526
526
527
527
:param memo: built-in parameter for memoization
528
528
:param features: A collection of features or feature types that will be copied into new EOPatch.
529
- :param copy_timestamps: Whether to copy timestamps to the new EOPatch. By default copies them over if all
529
+ :param copy_timestamps: Copy timestamps to the new EOPatch. By default copies them over if all
530
530
features are copied or if any temporal features are getting copied.
531
531
"""
532
532
if not features : # For some reason deepcopy and copy pass {} by default
@@ -564,7 +564,7 @@ def copy(
564
564
:param features: Features to be copied into a new `EOPatch`. By default, all features will be copied.
565
565
:param deep: If `True` it will make a deep copy of all data inside the `EOPatch`. Otherwise, only a shallow copy
566
566
of `EOPatch` will be made. Note that `BBOX` and `TIMESTAMPS` will be copied even with a shallow copy.
567
- :param copy_timestamps: Whether to copy timestamps to the new EOPatch. By default copies them over if all
567
+ :param copy_timestamps: Copy timestamps to the new EOPatch. By default copies them over if all
568
568
features are copied or if any temporal features are getting copied.
569
569
:return: An EOPatch copy.
570
570
"""
@@ -620,7 +620,7 @@ def save(
620
620
:param overwrite_permission: A level of permission for overwriting an existing EOPatch
621
621
:param filesystem: An existing filesystem object. If not given it will be initialized according to the `path`
622
622
parameter.
623
- :save_timestamps: Whether to save the timestamps of the EOPatch. With the `"auto"` setting timestamps are saved
623
+ :save_timestamps: Save the timestamps of the EOPatch. With the `"auto"` setting timestamps are saved
624
624
if `features=...` or if other temporal features are being saved.
625
625
:param use_zarr: Saves numpy-array based features into Zarr files. Requires ZARR extra dependencies.
626
626
:param temporal_selection: Writes all of the data to the chosen temporal indices of preexisting arrays. Can be
@@ -666,7 +666,7 @@ def load(
666
666
:param lazy_loading: If `True` features will be lazy loaded.
667
667
:param filesystem: An existing filesystem object. If not given it will be initialized according to the `path`
668
668
parameter.
669
- :load_timestamps: Whether to load the timestamps of the EOPatch. With the `"auto"` setting timestamps are loaded
669
+ :load_timestamps: Load the timestamps of the EOPatch. With the `"auto"` setting timestamps are loaded
670
670
if `features=...` or if other temporal features are being loaded.
671
671
:param temporal_selection: Only loads data corresponding to the chosen indices. Can also be a callable that,
672
672
given a list of timestamps, returns a list of booleans declaring which temporal slices to load.
0 commit comments