Skip to main content

I want to set the vector tolerance value in the Matcher with a dynamic value.

 

Currently, I can use a parameter value only. Is it possible to use an attribute value for this, or how can I set this value more dynamically?

 

I have been trying also to create a custom transformer with the matcher in it. However, I got the same issue.

Hi @jsmitsman​ ,

I think there is no way to set the tolerance value dynamically since it should be applied to all the input features equally, as long as you do it within a single workspace.

If you run the workspace through a WorkspaceRunner in another workspace, you can set the parameter for each run, but I don't know it's the case for your requirement.


Hi @jsmitsman​ ,

I think there is no way to set the tolerance value dynamically since it should be applied to all the input features equally, as long as you do it within a single workspace.

If you run the workspace through a WorkspaceRunner in another workspace, you can set the parameter for each run, but I don't know it's the case for your requirement.

This is how I solved a similar issue, but moving data between workspaces can be a bit of a hassle. One way to solve this is with Recorder and Player transformers, but I'm not sure if that works as well on server.


Reply