Attributes of the input features are presented in a matrix of rows and columns, where you can perform multiple tasks. All features that pass through the AttributeManager are modified according to the selections made in the parameters.
In this example, several attributes of the input features are modified:
The altered attributes are reflected in the transformer.
Adjacent Feature Attributes are accessed under Advanced: Attribute Value Handling. When turned on, you can specify a number of features preceding and following the current feature to reference in calculating new values.
Suppose we are given the dataset below:
ID |
Latitude |
Longitude |
---|---|---|
0 |
49.1640 |
-123.061 |
1 |
49.1643 |
-123.063 |
2 |
49.1642 |
-123.062 |
3 |
49.1642 |
-123.064 |
If the Number of Prior Features and Number of Subsequent Features parameters are both set to 2, then when the first feature is read, the AttributeManager has access to the following features:
Feature Reference |
ID |
Latitude |
Longitude |
---|---|---|---|
feature[-2] |
<missing> |
<missing> |
<missing> |
feature[-1] |
<missing> |
<missing> |
<missing> |
current feature |
0 |
49.1640 |
-123.061 |
feature[+1] |
1 |
49.1643 |
-123.063 |
feature[+2] |
2 |
49.1642 |
-123.062 |
Note that some attributes are missing because no features exist prior to the first feature.
After the second feature is read, the window of prior and subsequent features available to AttributeManager shifts to produce the following:
Feature Reference |
ID |
Latitude |
Longitude |
---|---|---|---|
feature[-2] |
<missing> |
<missing> |
<missing> |
feature[-1] |
0 |
49.1640 |
-123.061 |
current feature |
1 |
49.1643 |
-123.063 |
feature[+1] |
2 |
49.1642 |
-123.062 |
feature[+2] |
3 |
49.1642 |
-123.064 |
This statement would calculate the average latitude of the two preceding features:
Calculations referencing adjacent features can be created in the Arithmetic Editor and the Text Editor. These editors will list the attributes of the currently processed feature first, then the prior features, then the subsequent features.
This transformer accepts any feature.
Features with the created and modified attributes.
When an AttributeManager transformer is connected and opened for the first time, this matrix is automatically populated with the incoming features’ attributes as they currently exist. It will also adjust dynamically to reflect upstream attribute changes in the workspace.
By default, the Actions are set to “Do Nothing” and pass through the features unaltered. As you make changes to individual items, FME interprets the appropriate Action based on your inputs. Action can be overridden manually, but you generally should not need to adjust it.
Input Attribute | When the transformer is first opened this column is populated with the full list of exposed attributes sent to the input port. This field is not editable, but will update to reflect changes made in the workspace. When new attributes are created this field will remain blank. |
Output Attribute |
By default, the Output Attribute matches the Input Attribute. You can:
|
Attribute Value |
By default, Attribute Value is blank, leaving the features unchanged. You can set new values here by clicking in the appropriate row and:
See Defining Values below for detailed information on using these options. |
Action |
By default, Action is set to “Do Nothing”, leaving features unchanged. As you make changes in the parameters, the Action will adjust automatically to reflect the appropriate result, which can be manually overridden in some cases. The available actions are: Set Value: Sets the attribute to the value specified in the Attribute Value column. Overwrites existing attribute values. Do Nothing: Leaves the attribute unaltered. Rename: Renames the input attribute to the name specified in the Output Attribute column. Remove: Deletes the attribute entirely and removes it from the output schema. Set Default Value: Assigns the specified value for the attribute to features where the attribute is missing. Does not overwrite current values, including null. NOTE:
|
Expanding the Advanced section provides access to the attributes of adjacent features that can be used to define values. While this section may appear complex, most users will rarely need this functionality.
Check “Enable Adjacent Feature Attributes” to use this feature.
You can now set an attribute value (in the Attribute Actions matrix) based on the attributes of features prior or subsequent to the current feature by referencing them as follows:
When retrieving the value of a prior feature, any changes made by the AttributeManager to that feature will take effect.
This parameter specifies the maximum number of prior features that can be referenced by the AttributeManager. If Multiple Feature Attribute Support is enabled, this must be a value from 0 to 100. As additional features must be read for each feature processed, defining only the maximum number of features needed to be retrieved will improve performance.
This parameter specifies the maximum number of subsequent features that can be referenced by the AttributeManager. If Multiple Feature Attribute Support is enabled, this must be a value from 0 to 100. As additional features must be read for each feature processed, defining only the maximum number of features needed to be retrieved will improve performance.
This parameter specifies the desired behavior when the referenced attribute does not exist, has a null value, or has an empty string value.
Such attributes can be thought of as unresolved attributes. For example, since there are no features prior to the first input feature, the AttributeManager will fail to resolve the value of feature[-1].AttrName for the first input feature.
If this parameter is set to No Substitution, the AttributeManager will resolve all unresolved attributes with an empty string if they are used in a larger expression. If the unresolved attribute is assigned directly and is not part of a larger expression, then the Output Attribute will be unresolved in the same way. For example, if B is missing, and A is set to @Value(B), then A will be missing as well. But if A is set to "B = @Value(B)", A will have the value of "B = ".
As another example, if the value of feature[+2] is the empty string and Default Value is specified, then the empty string will be treated as an unresolved attribute, and will be resolved as the value specified under Default Value.
If this parameter is set to Closest Adjacent Feature, then the unresolved attributes will be resolved as the corresponding attribute of the closest feature, if such a feature exists. When looking for closest features, features with unresolved attributes are skipped. If a prior or subsequent feature has unresolved attributes, it is possible that the current feature is used to resolve the missing attributes.
For example, if the value of feature[-2].AttrName is unresolved, then to resolve the value of feature[-2].AttrName the AttributeManager will look at the closest features to feature[-2], alternating between features prior to and subsequent to feature[-2]. It will first look at feature[-3].AttrName, followed by feature[-1].AttrName if needed, and then feature[-4].AttrName if needed, until all prior and subsequent features specified have been exhausted.
If the attribute remains unresolved within the specified prior and subsequent features, then it will be resolved as the value specified in the Default Value parameter.
This parameter specifies the value used to resolve unresolved attributes in these cases:
Row Reordering
|
Enabled once you have clicked on a row in the Attribute Actions matrix. Choices include:
|
Filter
|
Start typing a string, and the matrix will only display rows matching those characters. Searches all columns. This only affects the display of attributes within the transformer - it does not alter which attributes are output. |
Import
|
The import button will populate the matrix with a set of Output Attributes read from a dataset. If the transformer already contains a schema, these attributes will be appended to the existing list. |
Refresh
|
Refresh will reset the matrix content to its default state, discarding changes made and resetting all Actions to “Do Nothing”. |
Using a set of menu options, transformer parameters can be assigned by referencing other elements in the workspace. More advanced functions, such as an advanced editor and an arithmetic editor, are also available in some transformers. To access a menu of these options, click beside the applicable parameter. For more information, see Transformer Parameter Menu Options.
There are several ways to define a value for use in a Transformer. The simplest is to simply type in a value or string, which can include functions of various types such as attribute references, math and string functions, and workspace parameters. There are a number of tools and shortcuts that can assist in constructing values, generally available from the drop-down context menu adjacent to the value field.
The Text Editor provides a convenient way to construct text strings (including regular expressions) from various data sources, such as attributes, parameters, and constants, where the result is used directly inside a parameter.
The Arithmetic Editor provides a convenient way to construct math expressions from various data sources, such as attributes, parameters, and feature functions, where the result is used directly inside a parameter.
Set values depending on one or more test conditions that either pass or fail.
Parameter Condition Definition Dialog
Expressions and strings can include a number of functions, characters, parameters, and more - whether entered directly in a parameter or constructed using one of the editors.
These functions manipulate and format strings. | |
A set of control characters is available in the Text Editor. | |
Math functions are available in both editors. | |
These operators are available in the Arithmetic Editor. | |
These return primarily feature-specific values. | |
FME and workspace-specific parameters may be used. | |
Working with User Parameters | Create your own editable parameters. |
Processing Behavior |
Feature-Based
|
Feature Holding |
No |
Dependencies | None |
FME Licensing Level | FME Base Edition and above |
Aliases | |
History | Released: FME 2016.0 |
Categories |
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 AttributeManager on the FME Community.
Examples may contain information licensed under the Open Government Licence – Vancouver