Opened 16 years ago
Last modified 16 years ago
#425 new enhancement
v.out.ogr: don't use random access to find attributes
Reported by: | neteler | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 6.5.0 |
Component: | Vector | Version: | unspecified |
Keywords: | Cc: | ||
CPU: | All | Platform: | All |
Description
Moved here from http://trac.osgeo.org/grass/browser/grass/trunk/doc/vector/TODO#L250
Radim suggested:
v.out.ogr is very slow because it is using random access to the attributes. It should be rewritten so that all attributes are selected by one query, geometry for each attribute can be searched by category index (which is fast).
Note:
See TracTickets
for help on using tickets.
Replying to neteler:
I've implemented something like this in a long-ago rewrite (never committed) of d.vect.chart [1] - see plot.c. It uses db_open_select_cursor to access the table in one query and then for each row Vect_cidx_find_all to find the geometries associated to the cat value in that row.
Moritz
[1] http://lists.osgeo.org/pipermail/grass-dev/2006-October/026624.html