Changes between Version 68 and Version 69 of Grass7/VectorLib/OGRInterface
- Timestamp:
- 11/14/11 09:45:22 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Grass7/VectorLib/OGRInterface
v68 v69 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 slowwhen accessing features via OGR library, see example bellow103 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 104 105 105 {{{ … … 111 111 }}} 112 112 113 Test for vector map with 100.000 points 114 115 Native 116 117 {{{ 118 real 0m0.194s 119 user 0m0.164s 120 sys 0m0.024s 121 }}} 122 123 OGR-link 124 125 {{{ 126 real 0m35.616s 127 user 0m7.880s 128 sys 0m3.700s 129 }}} 130 113 131 '''Simple test of rendering speed''' 114 132