Skip to main content
Question

move all elements to 0,0,0

  • November 14, 2013
  • 2 replies
  • 234 views

gschleusner
Contributor
Forum|alt.badge.img+2
Hi,

 

 

I need to move a series of elements in an IFC file to have a local x,y,z values set to Zero.  I would then fan them out into individual ifles with a result of each files geometry being close locol 0,0,0 in each file.

 

 

Any transformer that would  move the  elements to 0,0,0 would be helpful.

 

 

Greg
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.

2 replies

takashi
Celebrity
  • November 15, 2013
Hi Greg,

 

 

If you need to move a point geometry to (0, 0, 0), use the CoordinateExtractor to extract (x, y, z) values of the point, and then use the Offsetter to offset it by (-x, -y, -z). To fan them out, consider using fanout option of the writer.

 

  But the current FME seems not to support writing IFC dataset. Which format dataset do you need to write? Industry Foundation Class STEP Files (IFC) Reader http://docs.safe.com/fme/html/FME_ReadersWriters/Default.htm#ifc/ifc.htm

 

 

Takashi

gio
Contributor
Forum|alt.badge.img+15
  • Contributor
  • November 15, 2013
matrix move operation, using affiner.

 

1,0,-x

 

0,1,-y

 

 

Nescessity for extraction of coordinates depends on geometry type.