Yes this works as the gaps are NoData, the RasterMosaicker is set to Overlapping values = Last and Nodata Overwrites Data = No.
One way to do this is to create an attribute "order" and give it a value 1 or 2 using an AttributeCreator for each raster. Then use a Sorter to make sure the top raster arrives as the last one.
Yes this works as the gaps are NoData, the RasterMosaicker is set to Overlapping values = Last and Nodata Overwrites Data = No.
One way to do this is to create an attribute "order" and give it a value 1 or 2 using an AttributeCreator for each raster. Then use a Sorter to make sure the top raster arrives as the last one.
Added workspace demonstrating this.
Thanks, learned something new today.
Yes this works as the gaps are NoData, the RasterMosaicker is set to Overlapping values = Last and Nodata Overwrites Data = No.
One way to do this is to create an attribute "order" and give it a value 1 or 2 using an AttributeCreator for each raster. Then use a Sorter to make sure the top raster arrives as the last one.
@nielsgerrits is correct that the best way to deal with this is a sorter before the RasterMosaiker.
I need to add a caveat that the RM uses the resolution of the first image, so if you are using a lower resolution image to fill the gaps you need to either supersample it first to match the higher resolution image or clone the higher resolution and have one with an order value of 0 and the other with an order value of 2.