ArcGIS Pro Notebook render rasters side by side?

361
1
03-23-2021 06:10 AM
Labels (1)
GISArchbold
New Contributor II

I have drone imagery that I am performing various processes through a notebook. One thing I would like to do is display the RGB imagery next to a single band plant height raster for visual comparison using Render, but it is only displaying the second raster. Is it possible to do this?

arcpy.ia.Render(ortho, {'bands': [3, 2, 1]})
arcpy.ia.Render(height, {'bands': [1]})

 

See attached screenshot

0 Kudos
1 Reply
DanPatterson
MVP Esteemed Contributor

if the rasters occupy the same x,  y space, then you can only render them side by side by shifting one of them in a direction so that they don't overlap


... sort of retired...
0 Kudos