I have a raster broken up into a grid of raster cells using RasterTiler. I want to rotate each cell X degrees (not the whole raster) in place. I do *not* want to rotate around the upper left corner. I need the cell to rotate and remain in the exact location.
As I understand it, my process is using the following transformers:
- RasterCellOriginSetter: Set to 0.5,0.5 (the center)
- Rotator: Set Rotation Angle to X.
- RasterRotationApplier: Interpolation Type = Bilinear.
When I do this, the cells are rotated around the upper-left corner rather than the centroid.
Do I have the correct transformers & settings for this application?



