Skip to main content
Solved

Logic of Converting Vector data to Raster by NumericRasterizier?

  • February 15, 2016
  • 1 reply
  • 20 views

Does anyone know what is the logic when I transfer the vector data to raster data through Numeric rasterizier? For example the original attribute value for the polygon inside one cell is 100 (accounts for 10%) and other polygon is 10(accounts for 90%). What is the value of new rasterizied cell?

Best answer by jdh

The general rule of thumb when dealing with FME Rasters is last feature in wins.

 

In the case of the NumericRasterizer, the value of the last vector to enter the transformer will have priority over all other features.

 

 

You can use a Sorter to control the feature order, or if you want to have an average of the values you can use an AreaOnAreaOverlayer (w/ list) to identify the overlap and then an ExpressionEvaluator to calculate the value you want.
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

jdh
Contributor
Forum|alt.badge.img+40
  • Contributor
  • Best Answer
  • February 15, 2016

The general rule of thumb when dealing with FME Rasters is last feature in wins.

 

In the case of the NumericRasterizer, the value of the last vector to enter the transformer will have priority over all other features.

 

 

You can use a Sorter to control the feature order, or if you want to have an average of the values you can use an AreaOnAreaOverlayer (w/ list) to identify the overlap and then an ExpressionEvaluator to calculate the value you want.