def _grid_location_equals(xarr,grid_location=None):
"""Return True when the xarr grid_location attribute is grid_location
Parameters
----------
xarr : xarray.DataArray
xarray dataarray which attributes should be tested.
grid_location : str
string describing the grid location : eg 'u','v','t','f'...
Returns
-------
test : bool
boolean value of the test.
"""
test = True
if xarr.attrs.has_key('grid_location'):
test *= (xarr.attrs['grid_location']==grid_location)
return test
评论列表
文章目录