Changes between Version 70 and Version 71 of Grass7/VectorLib/OGRInterface
- Timestamp:
- 11/14/11 09:50:25 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Grass7/VectorLib/OGRInterface
v70 v71 129 129 }}} 130 130 131 Rewriting code to use sequential access causes significant speed-up for OGR-links (note no affect for GRASS native format) 132 133 {{{ 134 !cpp 135 while(TRUE) { 136 if (Vect_read_next_line(&In, Points, Cats) == -2) 137 break; 138 } 139 }}} 140 141 OGR-link 142 {{{ 143 real 0m0.831s 144 user 0m0.444s 145 sys 0m0.016s 146 }}} 147 131 148 '''Simple test of rendering speed''' 132 149