如何使用 python 中的二维数组访问网格的单元格?
How to access a cell of a grid using a 2d array in python?
我正在尝试使用 python 对 NetCDF 数据集将一个单元格合并为一个值。我是 python 的新手,我不明白我在这里做错了什么。我有一个二维数组,我通过遍历数据集 dataArr 给出了四个点。
我使用 Lerp 方法进行计算。不知何故,当我传递 3 个值时,它似乎认为它大于 3。
我在这里做错了什么?感谢副词。
这是我得到的错误>>
self.Lerp((dataArr[i][j]),(dataArr[i+1][j]),fraction) 恰好接受 3 个参数(给定 4 个)
def compute(self,varval):
vars=self.data.variables
for var in vars:
if var==varval:
ntimes, ny, nx=vars[var].shape #inherit the method above.
print(ntimes, ny, nx)
#create the old computational grid.
computational_grid=np.zeros((ny,nx),dtype=int)
fraction=.5
newnx,newny =(nx*fraction,ny*fraction)
new_computational_grid=np.zeros((newny,newnx),dtype=int)
phy_value_arr=self.get_data(varval)
t=10 #send this t value with coords
dataArr=self.data.variables['tos'][t]
for i in range(0,(ny-1),1):
for j in range(0,(nx-1),1):
a=self.Lerp((dataArr[i][j]),(dataArr[i+1][j]),fraction)
b=self.Lerp((dataArr[i][j]),(dataArr[i+1][j]),fraction)
self.tempY.append(self.Lerp(a,b,fraction))
tempY.reshape(newnx,newny)
pcolormesh(self.tempY)
colorbar()
def Lerp( _a, _b, _t) :
return _a+(_b-_a)*_t
你把 Lerp 称为 tihs:
self.Lerp(a,b,fraction)
根据定义,它会将 self 作为第一个参数。因此,您总共有四个。但是,您将 Lerp 定义为
def Lerp( _a, _b, _t) : #<- this takes only three arguments
我觉得应该是:
def Lerp(self, _a, _b, _t) : #<- this takes four, and self is first one
我正在尝试使用 python 对 NetCDF 数据集将一个单元格合并为一个值。我是 python 的新手,我不明白我在这里做错了什么。我有一个二维数组,我通过遍历数据集 dataArr 给出了四个点。 我使用 Lerp 方法进行计算。不知何故,当我传递 3 个值时,它似乎认为它大于 3。 我在这里做错了什么?感谢副词。
这是我得到的错误>> self.Lerp((dataArr[i][j]),(dataArr[i+1][j]),fraction) 恰好接受 3 个参数(给定 4 个)
def compute(self,varval):
vars=self.data.variables
for var in vars:
if var==varval:
ntimes, ny, nx=vars[var].shape #inherit the method above.
print(ntimes, ny, nx)
#create the old computational grid.
computational_grid=np.zeros((ny,nx),dtype=int)
fraction=.5
newnx,newny =(nx*fraction,ny*fraction)
new_computational_grid=np.zeros((newny,newnx),dtype=int)
phy_value_arr=self.get_data(varval)
t=10 #send this t value with coords
dataArr=self.data.variables['tos'][t]
for i in range(0,(ny-1),1):
for j in range(0,(nx-1),1):
a=self.Lerp((dataArr[i][j]),(dataArr[i+1][j]),fraction)
b=self.Lerp((dataArr[i][j]),(dataArr[i+1][j]),fraction)
self.tempY.append(self.Lerp(a,b,fraction))
tempY.reshape(newnx,newny)
pcolormesh(self.tempY)
colorbar()
def Lerp( _a, _b, _t) :
return _a+(_b-_a)*_t
你把 Lerp 称为 tihs:
self.Lerp(a,b,fraction)
根据定义,它会将 self 作为第一个参数。因此,您总共有四个。但是,您将 Lerp 定义为
def Lerp( _a, _b, _t) : #<- this takes only three arguments
我觉得应该是:
def Lerp(self, _a, _b, _t) : #<- this takes four, and self is first one