Hi, we are using ifcopenshell-python's geom.iterator. The iterator is crashing at next(). I've raised a help request previously for the same. That is https://sourceforge.net/p/ifcopenshell/discussion/1782717/thread/813b99524b/. @aothms has responded and requested ifc file. After sometime we've shared the ifc file in the thread to reproduce the issue. But not sure if it has been checked. Please check the thread to reproduce the issue in windows. In the above issue, we've reported that in windows the...
Hi, we are using ifcopenshell-python's geom.iterator. The iterator is crashing at next(). I've raised a help request previously for the same. That is https://sourceforge.net/p/ifcopenshell/discussion/1782717/thread/813b99524b/. @aothms has responded and requested ifc file. After sometime we've shared the ifc file in the thread to reproduce the issue. But not sure if it has been checked. Please check the thread to reproduce the issue in windows. In the above issue, we've reported that in windows the...
We are using 0.5.0-rc1
Hi, We have a minimal IFC file which is failing with a segmentation fault on windows 64bit. But the same file is passing in macos and linux. Could you please look into the issue because our applications that process this IFC are native to windows. Please find the attached IFC file. The problematic element is with the object ID: 1346
Hello Thomas, Thanks very much for reply. We can't share the IFC, sorry for that. Is there a way to identify which element is causing this error? Or can you please give us some action items to understand the issue?
Hello Thomas, Thanks very much for reply. We can't share the IFC, sorry for that. Is there a way to identify which element is causing this error? Or can you please give us some action items to understand the issue?
Hello, We are using ifcopenshell to iterate through all elements in the ifc. This is how we use ifcopenshell. settings = ifcopenshell_geom.settings() settings.set(settings.DISABLE_OPENING_SUBTRACTIONS, blender_booleans) iterator = ifcopenshell_geom.iterator(settings, ifc_file_name) valid_file = iterator.initialize() if not valid_file: return False while True: ob = iterator.get() .... our code goes here ... if not iterator.next(): break In somecases the iterator.next() is returning false eventhough...
Hello, We are using ifcopenshell to iterate through all elements in the ifc. This is how we use ifcopenshell. settings = ifcopenshell_geom.settings() settings.set(settings.DISABLE_OPENING_SUBTRACTIONS, blender_booleans) iterator = ifcopenshell_geom.iterator(settings, ifc_file_name) valid_file = iterator.initialize() if not valid_file: return False while True: ob = iterator.get() .... our code goes here ... if not iterator.next(): break In somecases the iterator.next() is returning false eventhough...