I have a large topography that I am placing some components onto. I have places first phase successfully. But when i try to place it for another portion, i get the following error. Furthest object is 11 km away from the origin. If needed I can share the file in DM.
Yes, I saw that. Funny thing is it was less than 15 kms and I ended up placing them manually. How can I place them manually but not programatically? That is weird.
My workaround is placing them any where close to origin and then using a custom move component to move them to place… I also thought element location component does this but it gives the same error so not sure what happens inside the element location
But wanted to know if there was another method to not have to edit definitions
Just went back to check the source code and looks like it should be internally converting the values to revit’s feet equivalent, so not really sure what’s going wrong on my side…
There are two methos called ToXYZ
one from Point and one from Vector.
In your screeshoot you are conecting a vector so the second is called.
Conversion from point assumes the point is a position in the world and translates units.
Conversion from vector assumes is a direction and don’t. This looks like a good idea to preserve unit length vectors at its time, but I see the confusion.
Thanks @kike , I see that now… I was just rebuilding the component from my initial post for RVT move element which used to work (I was probably a bit smarter back then xD).
@Direnc_Demirbas below is the component similar to what I used before to resolve the above issue (haven’t faced it recently), hope it helps you out.