Exercise 4 Parks Dataset Sorting
Data Parks (MapInfo TAB)
Overall Goal Sort parks into alphabetical order
Demonstrates Null attribute handling
Start Workspace C:\FMEData2017\Workspaces\DesktopAdvanced\Attributes-Ex4-Begin.fmw
End Workspace C:\FMEData2017\Workspaces\DesktopAdvanced\Attributes-Ex4-Complete.fmw

In this workspace a colleague is trying to write out a list of parks to a Geodatabase dataset. It’s important to them that the parks are in alphabetical order – according to their name – and that features with no park names are written as null and appear last in the dataset.

However, the workspace they have does not seem to be doing what they need. The parks are sorted alphabetically, but un-named parks always appear first.


1) Start Workbench
Open the workspace C:\FMEData2017\Workspaces\DesktopAdvanced\Attributes-Ex4-Begin.fmw

Inspect the source dataset by clicking the source feature type and choosing the pop-up inspection button.

In the Data Inspector examine the data in the Table View window. You’ll see that the data is in order of ID, not name and that there are <missing> values scattered throughout:

To sort the <missing> data we'll need to set their ParkName attribute to something that will appear at the bottom of a sorted list, then set them back to null afterwards.


2) Add NullAttributeMapper
Add a NullAttributeMapper transformer prior to the Sorter transformer. Inspect the parameters.

Ensure “Map” is set to Selected Attributes, and choose the attribute ParkName:

Underneath that is a section of what to map to.

We know the values in here are currently listed as <missing> so set the “If Attribute Value Is” parameter to Missing (Selected Attributes Only)

We want to map these to a value that will appear at the bottom of any alphabetically sorted list, so change “Map To” to New Value and enter ZZZ as the new value.

Accept the parameter changes.


3) Add NullAttributeMapper
Now add a second NullAttributeMapper; this time it should be connected after the Sorter.

Inspect the parameters and, once again, ensure “Map” is set to Selected Attributes and select the ParkName attribute. This time turn the ZZZ values back to nulls:

Technically we could just turn them back into <missing>; the Geodatabase writer will write them out as nulls. However, assuming we didn’t know that, null is the safer option and bound to give us what we want.


4) Save and Run Workspace
Save the workspace and then run it. Inspect the output. This time the data should be sorted by ParkName, but with all null values at the end of the dataset:


5) Fix RefParkId
Your colleague now asks you to fix the RefParkId field. You'll have noticed that a lot of the values are -9999. That's the MapInfo equivalent of "nothing" but for Geodatabase it would be better to set these to proper nulls.


Miss Vector says...
That's very simple to do. Take a moment to think about how before you look at the instructions!

To do this open the parameters dialog for the first NullAttributeMapper. Add RefParkId to the list of attributes being processed. Then add -9999 to the Or If Attribute Value Is field:

Now open the second NullAttributeMapper and add RefParkId to the list of attributes being processed.

Now these values will get mapped to ZZZ with the missing ParkName values. Then they will be turned into true nulls by the second NullAttributeMapper.


CONGRATULATIONS
By completing this exercise you have learned how to:
  • Identify null and missing attribute values
  • Set null and missing attribute values

results matching ""

    No results matching ""