私はpythonとnumpyに非常に慣れていないので、用語を誤用していたらごめんなさい。
計算を迅速かつ効率的に行うために、ラスターを 2D numpy 配列に変換しました。
各値について、それ以下のすべての値の合計を生成し、その値を新しい配列に書き込むように、numpy 配列全体の累積合計を取得する必要があります。そのように配列全体を循環する必要があります。
また、出力を 1 から 100 の間でスケーリングする必要がありますが、その
方が簡単に思えます。
例によって明確にする試み:
array([[ 4, 1 , 3 , 2] dtype=float32)
出力値(最初の行を手動で実行するだけ)を次のように読みたいと思います:
array([[ 10, 1 , 6 , 3], etc.
それを行う方法についてのアイデアはありますか?
前もって感謝します!
興味のある人のためのほぼ完成したスクリプト:
#Generate Cumulative Thresholds
#5/15/14
import os
import sys
import arcpy
import numpy as np
#Enable overwriting output data
arcpy.env.overwriteOutput=True
#Set working directory
os.chdir("E:/NSF Project/Salamander_Data/Continuous_Rasters/Canadian_GCM/2020/A2A/")
#Set geoprocessing variables
inRaster = "zero_eurycea_cirrigera_CA2A2020.tif"
des = arcpy.Describe(inRaster)
sr = des.SpatialReference
ext = des.Extent
ll = arcpy.Point(ext.XMin,ext.YMin)
#Convert GeoTIFF to numpy array
a = arcpy.RasterToNumPyArray(inRaster)
#Flatten for calculations
a.flatten()
#Find unique values, and record their indices to a separate object
a_unq, a_inv = np.unique(a, return_inverse=True)
#Count occurences of array indices
a_cnt = np.bincount(a_inv)
#Cumulatively sum the unique values multiplied by the number of
#occurences, arrange sums as initial array
b = np.cumsum(a_unq * a_cnt)[a_inv]
#Divide all values by 10 (reverses earlier multiplication done to
#facilitate accurate translation of ASCII scientific notation
#values < 1 to array)
b /= 10
#Rescale values between 1 and 100
maxval = np.amax(b)
b /= maxval
b *= 100
#Restore flattened array to shape of initial array
c = b.reshape(a.shape)
#Convert the array back to raster format
outRaster = arcpy.NumPyArrayToRaster(c,ll,des.meanCellWidth,des.meanCellHeight)
#Set output projection to match input
arcpy.DefineProjection_management(outRaster, sr)
#Save the raster as a TIFF
outRaster.save("C:/Users/mkcarte2/Desktop/TestData/outRaster.tif")
sys.exit()