Question

Clipper Transformer Functionality


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.

4 replies

Userlevel 3
Badge +13
Hi,

 

 

Is the cliping necessary? if not consider using the spatial filter or relator, test to perform: inside
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.
Userlevel 4
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
Thanks David but I need the features present on the clippee as well.

Reply