generated from pangeo-gallery/example-gallery
-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
I would like to suggest that the code for area calculation be changed from:
R = 6.37e6
# we know already that the spacing of the points is one degree latitude
dϕ = np.deg2rad(1.)
dλ = np.deg2rad(1.)
dA = R**2 * dϕ * dλ * np.cos(np.deg2rad(ds.lat))
dA.plot()
to
dϕ = np.deg2rad(ds.lon.pointwidth)
dλ = np.deg2rad(ds.lat.pointwidth)
as the data seems to suggest that it 2 degree grid
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
