FME Transformers: 2024.1

Categories
Attributes

ListExploder

Explodes each list member on each input feature out into its own feature.

Any attributes on the list are copied to become non-list attributes of the feature output. In addition, the element number of the attributes in the original list is added to the feature. Each feature's output has a copy of the geometry from the original input feature.

  • If Input attributes and list element attributes have the same name, the Input attributes will be overwritten by the list element attributes.
  • ListExploder will not work with an invalid list, such as one that doesn't start at entry 0. For example:
Valid List Invalid List
mylist{0}.attr1 mylist{1}.attr1
mylist{1}.attr1 mylist{2}.attr1
mylist{2}.attr1 mylist{3}.attr1
mylist{3}.attr1 mylist{4}.attr1

Examples

Example 1

If this feature enters this transformer:

somelist{0}.length = 7.3

somelist{0}.kind = ’paved’

somelist{1}.length = 8.4

somelist{1}.kind = ’smooth’

somelist{1}.lanes = 2

somelist{2}.length = 1.1

somelist{2}.kind = ’rough’

another_attr = ’something else’

then, presuming that the list name specified was somelist{}, the index attribute was element_num, and the Accumulation Mode parameter was set to Merge List Attributes, the first returned feature would look like:

length = 7.3

kind = ’paved’

element_num = 0

another_attr = ’something else’

If the Accumulation Mode parameter was set to Only Use List Attributes, the first returned feature would look like:

length = 7.3

kind = ’paved’

element_num = 0

Example 2

Suppose you have a Input feature with the following 6 attributes. (The List Attribute used here would be ID{}.)

Name

Type

ID{0}.dec

ID{0}.hex

ID{1}.dec

ID{1}.hex

Merge List Attributes will produce elements with 4 attributes:

Name

Type

dec

hex

Only Use List Attributes will produce elements with 2 attributes:

dec

hex

Configuration

Input Ports

Output Ports

Parameters

Editing Transformer Parameters

Transformer parameters can be set by directly entering values, using expressions, or referencing other elements in the workspace such as attribute values or user parameters. Various editors and context menus are available to assist. To see what is available, click beside the applicable parameter.

For more information, see Transformer Parameter Menu Options.

FME Community

The FME Community is the place for demos, how-tos, articles, FAQs, and more. Get answers to your questions, learn from other users, and suggest, vote, and comment on new features.

Search for all results about the ListExploder on the FME Community.