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
Using getgeom(multipolygon) rather than getgeom(polygon, i) is recommended... but in practice the later is used a lot and is currently insanely slow if you have e.g. 100 holes in a polygon.
We could maybe add a cache of bit indices for each polygon with the exterior then all the holes. Then we can just index with it to get each polygon after the first time.
The text was updated successfully, but these errors were encountered:
Using
getgeom(multipolygon)
rather thangetgeom(polygon, i)
is recommended... but in practice the later is used a lot and is currently insanely slow if you have e.g. 100 holes in a polygon.We could maybe add a cache of bit indices for each polygon with the exterior then all the holes. Then we can just index with it to get each polygon after the first time.
The text was updated successfully, but these errors were encountered: