I have read a Huge polygon and used a Tiler transformer. I specified the Tiling Type to "Number of Tiles"
and assigend the horizontal and vertical numbers..How do I then configure the Writer to save 1 tile to 1 individual file?
thanks
Jubert
I have read a Huge polygon and used a Tiler transformer. I specified the Tiling Type to "Number of Tiles"
and assigend the horizontal and vertical numbers..How do I then configure the Writer to save 1 tile to 1 individual file?
thanks
Jubert
thanks for the feedback, yes its fanout to save the files into multiple files..however the Tiler Transformer does not generate an attribute Index which can separate each tile generated.
It creates two attributes though.. an _column and an _row.. but If I assign a single attribute for the fanout. it would only separate it into either _column or a _row.
@Value(_row)[delimiter]@Value(_column)
[delimiter]: any character. I want to put an underscore here, but the system will not display that correctly...
You are right. A delimiter is necessary in this case.
If the format of the destination dataset is a folder-based one (e.g. Esri Shape), the destination file name (i.e. feature type name) can also be created in the feature type name field of the writer feature type properties dialog (FME 2015.1+).
e.g.
You can create a unique identifier based on _column and _row. An easiest way is to concatenate them with the StringConcatenator. For example:
@Value(_row)_@Value(_column)
You can create a unique identifier based on _column and _row. An easiest way is to concatenate them with the StringConcatenator. For example:
@Value(_row)_@Value(_column)
Thanks Takashi. We'll look into this. As a workaround, you may be able to use the HTML entity & # 64; @
there is another issue I guess, I left it running over night and takes forever. posted a new question.
https://knowledge.safe.com/questions/19647/tiler-b...
cheers!
,