Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add function to compute grid cell area for a rectilinear grid #64

Open
bradyrx opened this issue Oct 20, 2019 · 2 comments
Open

add function to compute grid cell area for a rectilinear grid #64

bradyrx opened this issue Oct 20, 2019 · 2 comments

Comments

@bradyrx
Copy link
Owner

bradyrx commented Oct 20, 2019

Typically you can just cosine-weight for a rectilinear grid, but you need grid cell areas if you're doing some sort of integration.

I've used code borrowed from my advisor in the past to create a cellarea variable for a 1x1deg rectilinear grid. It would be nice to just have a function here to pass in an arbitrary grid.

This is taken from a notebook made by @hdrake. I'd like to compare the results with the other method I used and implement the below method.

Rearth = 6.378E6   # radius of Earth in meters
# a DataArray that gives grid cell areas on the lat/lon grid (in units of m^2)
area = (np.deg2rad(dlat)*Rearth) * (np.deg2rad(dlon)*Rearth*np.cos(np.deg2rad(ds_out.lat))) * xr.ones_like(ds_out.lon)
@hdrake
Copy link

hdrake commented Oct 20, 2019

Note: this still only works work for rectilinear grids

@bradyrx
Copy link
Owner Author

bradyrx commented Oct 20, 2019

Yeah, I just assume a user has areacello, TAREA, etc. from a curvilinear grid.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants