Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dugalh committed Oct 27, 2024
1 parent 9fb7fce commit 3ebab6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions geedim/mask.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self, ee_image: ee.Image, mask: bool = _default_mask, region: dict
Method used to mask clouds. Valid for Sentinel-2 images. See :class:`~geedim.enums.CloudMaskMethod` for
details.
prob: float, optional
Cloud probability threshold (%). Valid for Sentinel-2 images with the `cloud-prob` ``mask-method``.
Cloud probability threshold (%). Valid for Sentinel-2 images with the `cloud-prob` ``mask_method``.
dark: float, optional
NIR threshold [0-1]. NIR values below this threshold are potential cloud shadows. Valid for Sentinel-2
images with the `qa` or `cloud-prob` ``mask_method``.
Expand All @@ -79,9 +79,9 @@ def __init__(self, ee_image: ee.Image, mask: bool = _default_mask, region: dict
Maximum distance (m) to look for clouds when forming the 'cloud distance' band. Valid for
Sentinel-2 images.
score: float, optional
Cloud Score+ threshold. Valid for Sentinel-2 images with the `cloud-score` ``mask-method``.
Cloud Score+ threshold. Valid for Sentinel-2 images with the `cloud-score` ``mask_method``.
cs_band: CloudScoreBand, str, optional
Cloud Score+ band to threshold. Valid for Sentinel-2 images with the `cloud-score` ``mask-method``.
Cloud Score+ band to threshold. Valid for Sentinel-2 images with the `cloud-score` ``mask_method``.
"""
BaseImage.__init__(self, ee_image)
self._ee_projection = None
Expand Down

0 comments on commit 3ebab6b

Please sign in to comment.