i need to select in MasterData only 10 meters radius data from source.
Based on Geometry and exclude attributes condition.
Best answer by redgeographics
The NeighborFinder will do that for you.
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
I assume you mean the "Group By" option. You don't have to use that, if you don't select any attributes there it will simply ignore those when doing the selection.
must select minimum two neighbor with only 10 meters radius
FME will interpret that distance as being in the same units as your data. If you put in data that's in meters FME will treat that value as meters and so on.
Under "Attribute Accumulation" you can have it generate a list of found candidates, included in that list is the distance so you can sort on that and select however many you like.
Ok, in that case you'll need to set the "Number of Neighbors to Find" parameter to 2 and the maximum distance to 10 (assuming your data is in meters of course). Then at the bottom you have specified that it will generate a list, called _candidates. This means that each base will get some attributes of the 2 closest candidates in a list, that red box at the bottom is where you can pick which attributes it'll take along.
Note that you have set a Group By, this means it will only consider candidates that have the same value for the attribute "HBA" as the base you're comparing them with.
Ok, in that case you'll need to set the "Number of Neighbors to Find" parameter to 2 and the maximum distance to 10 (assuming your data is in meters of course). Then at the bottom you have specified that it will generate a list, called _candidates. This means that each base will get some attributes of the 2 closest candidates in a list, that red box at the bottom is where you can pick which attributes it'll take along.
Note that you have set a Group By, this means it will only consider candidates that have the same value for the attribute "HBA" as the base you're comparing them with.