RelativeTiler
From fmepedia
| This page contains a Custom Transformer created by an fmepedia user. See the attached files list at the foot of this page for the zip file containing this custom transformer. |
Created by: Dmitri Bagh
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.
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
