You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having some trouble because that grid file is in radians, so the uxds.uxgrid Spherical Coordinates are in radians. I tried to convert them in place, uxds.uxgrid['node_lon'] = np.rad2deg(uxds.uxgrid['node_lon']), but that doesn't seem allowed (TypeError: 'Grid' object does not support item assignment).
uxds.uxgrid['var'] = ... should operate the same as uxds.uxgrid.var = ...
The text was updated successfully, but these errors were encountered:
Pointed out by @brianpm
uxds.uxgrid['var'] = ...
should operate the same asuxds.uxgrid.var = ...
The text was updated successfully, but these errors were encountered: