I have a polygon, I want to split based on a filed. Then, I want to convert polygons which is splited to raster (Geotiff) .
I tried it by two steps. But other method to do that only step? Can you help me? Thanks
This is myy solution:
I have a polygon, I want to split based on a filed. Then, I want to convert polygons which is splited to raster (Geotiff) .
I tried it by two steps. But other method to do that only step? Can you help me? Thanks
This is myy solution:
Can you help me please?
Are you using the destination dataset of Step 1 as the source dataset of Step 2?
If so, I think that you can connect the reader of Step 1 to the ImageRasterizer directly.
Takashi
I am using 2 steps as illustration. It means I have run step1 to split polygon.
And then in step 2, I read writer in step 1 and raster image.
But now, I want it's only step. How can I do?
Doesn't this work?
Reader (Step 1) -> ImageRasterlizer -> Writer (Step 2)
Have you better method for that?
Thank you
Reader (Step 1)
|
+--> ImageRasterlizer --> Writer (Step 2)
But you can also remain the writer (Step 1) if you need the dataset that will be written by it. Just branch the data flow from the reader, and connect it to the writer (Step 1).
Reader (Step 1)
|
+--> ImageRasterlizer --> Writer (Step 2)
|
+--> Writer (Step 1)
My purpose don't need to create intermediate dataset (split).
In my picture, I want to raster based on ldlr field. If I do that as you , there is not an option to do that.