Changes between Version 67 and Version 68 of Grass7/VectorLib/OGRInterface
- Timestamp:
- 11/14/11 09:39:21 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Grass7/VectorLib/OGRInterface
v67 v68 101 101 === Optimalization === 102 102 103 Most of GRASS modules are designed to access features randomly which is basically quick for GRASS native vector data, but very very slow when accessing features via OGR library, see example bellow 104 105 {{{ 106 #!cpp 107 nlines = Vect_get_num_lines(&In); 108 for (line = 1; line <= nlines; line++) { 109 Vect_read_line(&In, Points, Cats, line); 110 } 111 }}} 112 103 113 '''Simple test of rendering speed''' 104 114