Rasterization: Difference between revisions
m Maxim@tygron.com moved page Rasterization model to Rasterization over a redirect without leaving a redirect |
|||
| (7 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
The rasterization model is a part of | The rasterization model is a part of the [[Simulation Core]], that is tasked with converting attributes and polygons from features of various layers into raster values. | ||
=Layers= | =Layers= | ||
The layer rasterization sequence of the features is: | The layer rasterization sequence of the polygon features is: | ||
# [[Net Line]]s | # [[Net Line]]s | ||
# [[Address]]es | # [[Address]]es | ||
| Line 29: | Line 29: | ||
* '''Center''' Fastest but missing small polygons. | * '''Center''' Fastest but missing small polygons. | ||
Note: Since version 2025 combined is the default, before that outline was used. | |||
[[File:rasterization.jpg|thumb|none|500px|Select rasterization method in calculation panel]] | |||
Latest revision as of 14:28, 6 March 2026
The rasterization model is a part of the Simulation Core, that is tasked with converting attributes and polygons from features of various layers into raster values.
Layers
The layer rasterization sequence of the polygon features is:
Methods
Converting polygons to grid cells can be done in different ways. A common approach is by checking the intersection between the polygon outline and the cell. As displayed below:

However this will create a small overshoot resulting in larger cell area then the original polygon. To correct for this one could also rasterize based on the center point. As displayed below:

Although this provides a fairly accurate area this can lead to unwanted results for very small objects that are smaller then the grid cell area. When the cells center point does not intersect the small object it will not be rasterized and thus be part of the simulation.
To compensate for this situation the default option is combined center + outline. Where most objects are rasterized via the optimal area solution (center point) and small objects are rasterized with the outline to prevent falling of the grid.
Via the the editor Calculation panel the rasterization method can be selected.
- Combined Center for large and Outline for small polygons (default).
- Outline Overshoot results in more cells then polygon area.
- Center Fastest but missing small polygons.
Note: Since version 2025 combined is the default, before that outline was used.
