Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jswhit committed Jan 16, 2024
1 parent ae32077 commit 5363c50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pygrib/_pygrib.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ def redtoreg(redgrid_data, lonsperlat, missval=None):
(default NaN).
Takes 1-d array on ECMWF reduced gaussian grid, linearly interpolates to corresponding
regular gaussian grid."""
regular gaussian grid (with max(lonsperlat) longitudes). If any values equal missing value,
a masked array is returned."""
if missval is None:
missval = np.nan
datarr = _redtoreg(lonsperlat.max(),lonsperlat,redgrid_data,missval)
Expand Down

0 comments on commit 5363c50

Please sign in to comment.