4
Python'da bir rasterdeki nokta verilerinin bilinear enterpolasyonu?
Bazı enterpolasyonlar yapmak istediğim bir rasterim var. İşte buradayım: 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] …