Skip to content

Commit

Permalink
Fix boggus name refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mraspaud committed Mar 25, 2021
1 parent 5cf9be6 commit dce7438
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyresample/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@ def get_array_coordinates_from_lonlat(self, lon, lat) -> (int, int):
def get_array_coordinates_from_projection_coordinates(self, xm, ym):
"""Find the floating-point grid cell index for a specified projection coordinate.
If cols, rows is a tuple of sequences of projection coordinates, a tuple
If xm, ym is a tuple of sequences of projection coordinates, a tuple
of arrays are returned.
Args:
Expand Down Expand Up @@ -1721,8 +1721,8 @@ def get_array_indices_from_lonlat(self, lon, lat):
def get_array_indices_from_projection_coordinates(self, xm, ym):
"""Find the closest integer grid cell index for a specified projection coordinate.
If cols, rows is a point, a ValueError is raised if it is outside the area
domain. If cols, rows is a tuple of sequences of projection coordinates, a
If xm, ym is a point, a ValueError is raised if it is outside the area
domain. If xm, ym is a tuple of sequences of projection coordinates, a
tuple of masked arrays are returned.
Args:
Expand Down

0 comments on commit dce7438

Please sign in to comment.