A3(1) = A1(1)
A3(2) = A2(2)
A3(3) = A1(3)
A3(4) = A2(4)
......
How to do just that?
Thank you.
Regards,
barani
A3(1) = A1(1)
A3(2) = A2(2)
A3(3) = A1(3)
A3(4) = A2(4)
......
How to do just that?
Thank you.
Regards,
barani
The ModuloCounter (Count Maximum: 2) add alternatively 0 and 1 to the features.
You can then use an AttributeCreator to create A3 with Conditional Value setting.
-----
A3 = If @Value(_modulo_count) = 0 Then @Value(A1) Else @Value(A2)
-----
Takashi