4
Nội suy song phương của dữ liệu điểm trên raster trong Python?
Tôi có một raster mà tôi muốn thực hiện một số phép nội suy điểm. Đây là nơi tôi đang ở: 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 …