Tagged Questions
5
votes
1answer
127 views
How can I increase performance on inserting features with polygon geometry?
I have a problem when inserting features with polygon feature class in FGDB. This is my code:
... initialising some fields (does not affect performance)
m_featureBuffer.Shape = ...
7
votes
1answer
771 views
Should I split MultiPolygons into Polygons?
In the system I'm implementing I have a table T1 with an associated geometry. Most of the geometries are a set of n polygons, with 10 < n < 100.
At the moment in the table T1 I have a geometry ...