Chops the input features into a series of tiles. Features that span multiple tiles will be clipped into multiple features.

The # of Tiles Along X and # of Tiles Along Y parameters specify the number of tiles along X and Y axes.

User-added image

This transformer illustrates how to use nested loops within Workbench. It implements the following structure:

For i = 1 To m
  For j = 1 To n
    SomeAction
  Next j
  SomeAction
Next i