Skip to content

Commit 5608b55

Browse files
authored
Clean up comment in pyresample/geometry.py
1 parent a1db412 commit 5608b55

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pyresample/geometry.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2712,8 +2712,7 @@ def get_geostationary_bounding_box_in_proj_coords(geos_area, nb_points=50):
27122712

27132713
x *= h
27142714
y *= h
2715-
# Here below wer remove one element with [:-1] to avoid duplicated values
2716-
# at the equator
2715+
# We remove one element with [:-1] to avoid duplicate values at the equator
27172716
x = np.clip(np.concatenate([x[:-1], x[::-1]]), min(ll_x, ur_x), max(ll_x, ur_x))
27182717
y = np.clip(np.concatenate([y[:-1], -y]), min(ll_y, ur_y), max(ll_y, ur_y))
27192718

0 commit comments

Comments
 (0)