Skip to content

Commit

Permalink
Merge pull request #120 from avalentino/feature/numpy-v1.24
Browse files Browse the repository at this point in the history
Compatibility with numpy v1.24
  • Loading branch information
sfinkens authored Jan 4, 2023
2 parents 0c721b1 + 30144c4 commit 748774e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pygac/pod_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,9 +498,9 @@ def _adjust_clock_drift(self):
# one line to the other should be equal to the scan rate.
pixels_per_line = self.lats.shape[1]
complete_lons = np.full((num_lines, pixels_per_line), np.nan,
dtype=np.float)
dtype=np.float64)
complete_lats = np.full((num_lines, pixels_per_line), np.nan,
dtype=np.float)
dtype=np.float64)

complete_lons[scan_lines - min_line] = self.lons
complete_lats[scan_lines - min_line] = self.lats
Expand Down

0 comments on commit 748774e

Please sign in to comment.