いくつかのポイント補間を行いたいラスターがあります。ここに私がいる場所があります:
from osgeo import gdal
from numpy import array
# Read raster
source = gdal.Open('my_raster.tif')
nx, ny = source.RasterXSize, source.RasterYSize
gt = source.GetGeoTransform()
band_array = source.GetRasterBand(1).ReadAsArray()
# Close raster
source = None
# Compute mid-point grid spacings
ax = array([gt[0] + ix*gt[1] + gt[1]/2.0 for ix in range(nx)])
ay = array([gt[3] + iy*gt[5] + gt[5]/2.0 for iy in range(ny)])
これまで、SciPyのinterp2d関数を試しました。
from scipy import interpolate
bilinterp = interpolate.interp2d(ax, ay, band_array, kind='linear')
しかし、317 x 301ラスターの32ビットWindowsシステムでメモリエラーが発生します。
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
File "C:\Python25\Lib\site-packages\scipy\interpolate\interpolate.py", line 125, in __init__
self.tck = fitpack.bisplrep(self.x, self.y, self.z, kx=kx, ky=ky, s=0.)
File "C:\Python25\Lib\site-packages\scipy\interpolate\fitpack.py", line 873, in bisplrep
tx,ty,nxest,nyest,wrk,lwrk1,lwrk2)
MemoryError
bounds_error
または、fill_value
パラメータが記載されているとおりに機能しないため、このSciPy関数には自信がありません。ラスタが317×301であり、バイリニアアルゴリズムが難しくないため、メモリエラーが発生する理由がわかりません。
できればPythonで、おそらくNumPyで調整された、優れた双線形補間アルゴリズムに出会った人はいますか?ヒントやアドバイスはありますか?
(注:最近傍補間アルゴリズムは簡単です:
from numpy import argmin, NAN
def nearest_neighbor(px, py, no_data=NAN):
'''Nearest Neighbor point at (px, py) on band_array
example: nearest_neighbor(2790501.920, 6338905.159)'''
ix = int(round((px - (gt[0] + gt[1]/2.0))/gt[1]))
iy = int(round((py - (gt[3] + gt[5]/2.0))/gt[5]))
if (ix < 0) or (iy < 0) or (ix > nx - 1) or (iy > ny - 1):
return no_data
else:
return band_array[iy, ix]
...しかし、私は双線形補間法を好みます)
gt
です。
MemoryError
NumPyがあなたを超えてアクセスしようとするので、たぶんあなたは得るでしょうband_array
か?とを確認する必要がax
ありay
ます。