Skip to content

Commit

Permalink
Merge pull request #188 from ortk95/dev
Browse files Browse the repository at this point in the history
Disabling pylint false positive error
  • Loading branch information
ortk95 authored Mar 30, 2023
2 parents 342036c + a1b7a5d commit f2db8fe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions planetmapper/body_xy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,7 @@ def project_img(
pyproj.CRS(projection),
)

# pylint: disable-next=unpacking-non-sequence
x_img, y_img = transformer.transform(self.get_lon_img(), self.get_lat_img())
xy_points = np.array([(x, y) for x, y in zip(x_img.ravel(), y_img.ravel())])
img_points = img.ravel()
Expand Down

0 comments on commit f2db8fe

Please sign in to comment.