You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested this tool on a huge database with about 8k multi-line texts. Creation by coordinates is instantaneous, but the entity iterator takes a long time to create (~30sec). I made a selection of a small window in which there could be only 1 multi-line. Something very disappointed.
I need to make about 1k of these search windows, and it will take the whole day.
An example from your manual.
window = select.Window((150, 105), (280, 240))
for entity in select.bbox_inside(window, msp):
print(str(entity))
I had to create my own method of searching by coordinates, by iterating over the insertion point of all multi-line texts into the window dimensions. And it took about 40sec for all 1k windows.
I thought your method would be faster...
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I tested this tool on a huge database with about 8k multi-line texts. Creation by coordinates is instantaneous, but the entity iterator takes a long time to create (~30sec). I made a selection of a small window in which there could be only 1 multi-line. Something very disappointed.
I need to make about 1k of these search windows, and it will take the whole day.
An example from your manual.
window = select.Window((150, 105), (280, 240))
for entity in select.bbox_inside(window, msp):
print(str(entity))
I had to create my own method of searching by coordinates, by iterating over the insertion point of all multi-line texts into the window dimensions. And it took about 40sec for all 1k windows.
I thought your method would be faster...
Beta Was this translation helpful? Give feedback.
All reactions