It isn't quite false advertising.
I will attribute it to an omission based on the needs of the many rather than on the needs of the few.
The story is in code...
# ---- start with an array ------
a # ---- any data, floats for a tiny place over 5 days -----
array([[[ 0., 1., 2., 3.],
[ 4., 5., 6., 7.],
[ 8., 9., 10., 11.]],
[[ 12., 13., 14., 15.],
[ 16., 17., 18., 19.],
[ 20., 21., 22., 23.]],
[[ 24., 25., 26., 27.],
[ 28., 29., 30., 31.],
[ 32., 33., 34., 35.]],
[[ 36., 37., 38., 39.],
[ 40., 41., 42., 43.],
[ 44., 45., 46., 47.]],
[[ 48., 49., 50., 51.],
[ 52., 53., 54., 55.],
[ 56., 57., 58., 59.]]])
# ---- save to a raster *.tif ----------------
r = arcpy.NumPyArrayToRaster(a)
r.save("c:/temp/np2rast.tif")
# ---- load it back in to check your work ----
b = arcpy.RasterToNumPyArray("c:/temp/np2rast.tif")
b # ---- seems to only read the first 'day' ---
array([[ 0., 1., 2., 3.],
[ 4., 5., 6., 7.],
[ 8., 9., 10., 11.]])
# ---- well that isn't good, hmmmm ---------------
# The
rasters = []
for i in range(a.shape[0]):
ai = a[i]
rast = arcpy.NumPyArrayToRaster(ai)
r_name = "in_memory/a{:0>3}.tif".format(i)
rasters.append(r_name)
rast.save(r_name)
rasters = ";".join([i for i in rasters])
rasters
'in_memory/a000.tif;in_memory/a001.tif;in_memory/a002.tif;in_memory/a003.tif;in_memory/a004.tif'
fname = "c:/temp/np2rast_comp.tif"
arcpy.management.CompositeBands(rasters, fname) # ---- let's give Arc* another chance
c = arcpy.RasterToNumPyArray(fname)
c # ---- everything is back as it should be -----------
array([[[ 0., 1., 2., 3.],
[ 4., 5., 6., 7.],
[ 8., 9., 10., 11.]],
[[ 12., 13., 14., 15.],
[ 16., 17., 18., 19.],
[ 20., 21., 22., 23.]],
[[ 24., 25., 26., 27.],
[ 28., 29., 30., 31.],
[ 32., 33., 34., 35.]],
[[ 36., 37., 38., 39.],
[ 40., 41., 42., 43.],
[ 44., 45., 46., 47.]],
[[ 48., 49., 50., 51.],
[ 52., 53., 54., 55.],
[ 56., 57., 58., 59.]]])
Now if you followed so far, I have made reference to working with numpy arrays to do a lot of work. Rarely do I have the need to bring a 'raster' (ie *.tif) back in to ArcGIS PRO or ArcMap. I did and discovered, that arcpy.RasterToNumPyArray seems to only like bringing back a limited amount of data, probably with the expectation that user wants to map floating point values (ie 1 band) or integer values ( ie 3 bands for a 'picture'/'map').
This is a work-around, built-in.
You can of course store anything numeric in a tiff. How about some statistics for our array 'a'.
mins = np.min(a, axis=0)
maxs = np.max(a, axis=0)
avg = np.mean(a, axis=0)
rang = np.ptp(a, axis=0)
medn = np.median(a, axis=0)
stats = [mins, maxs, avg, rang, medn]
rasters = []
for i in range(5):
ai = stats[i]
rast = arcpy.NumPyArrayToRaster(ai)
r_name = "in_memory/a{:0>3}.tif".format(i)
rasters.append(r_name)
rast.save(r_name)
rasters = ";".join([i for i in rasters])
arcpy.management.CompositeBands(rasters, "c:/temp/stats.tif")
<Result 'c:\\Temp\\stats.tif'>
s = arcpy.RasterToNumPyArray("c:/temp/stats.tif")
s # ---- in order, min, max, avg, range, median ----
array([[[ 0., 1., 2., 3.],
[ 4., 5., 6., 7.],
[ 8., 9., 10., 11.]],
[[ 48., 49., 50., 51.],
[ 52., 53., 54., 55.],
[ 56., 57., 58., 59.]],
[[ 24., 25., 26., 27.],
[ 28., 29., 30., 31.],
[ 32., 33., 34., 35.]],
[[ 48., 48., 48., 48.],
[ 48., 48., 48., 48.],
[ 48., 48., 48., 48.]],
[[ 24., 25., 26., 27.],
[ 28., 29., 30., 31.],
[ 32., 33., 34., 35.]]])
# ---- It won't make for a nice map, but your data is there
Next up, explorations of the limitations of working with *.tif files for multidimensional raster/array data.
There are a number of options within the Esri suite of software, some of it relies in part on open source offerings. Some of these (ie libtiff and tifffile) have even made it into open source software too (ie GDAL, scipy.ndimage and skimage etc etc), kindof like open source-open source.
Enough for now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.