Skip to main content
Question

Clipper Transformer Functionality

  • July 24, 2013
  • 4 replies
  • 38 views

Hi,

 

I am cliiping some features using the clipper transformer andI am interested to get all the features inside the clipee boundary only. But the feature outside are also coming as an output. The output file is in dxf format.

 

 

Need help to elimininate the extra clipee features.
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.

4 replies

fmelizard
Safer
Forum|alt.badge.img+22
  • Safer
  • July 24, 2013
Hi,

 

 

Is the cliping necessary? if not consider using the spatial filter or relator, test to perform: inside

  • Author
  • July 24, 2013
Spatial relator gives me a list of features . I need to output the result in a dxf file. Now converting the list to feature type will be again an issue as I dont want to use pythonn script for the same.

david_r
Celebrity
  • July 24, 2013
Hi,

 

 

I agree with Itay on the SpatialFilter (not SpatialRelator), that is probably the most efficient solution.

 

 

If you still want to use the Clipper, it creates an attribute for each passing feature that indicates whether the feature was clipped or not, "Clipped indicator attribute".

 

 

You can then take only the features that exit via the INSIDE port and where the clipped indicator attribute = "no" (i.e. not clipped and entirely inside). This should give you what you want.

 

 

David

  • Author
  • July 24, 2013
Thanks David but I need the features present on the clippee as well.