Changes between Version 70 and Version 71 of Grass7/VectorLib/OGRInterface


Ignore:
Timestamp:
Nov 14, 2011, 9:50:25 AM (12 years ago)
Author:
martinl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Grass7/VectorLib/OGRInterface

    v70 v71  
    129129}}}
    130130
     131Rewriting 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
     141OGR-link
     142{{{
     143real    0m0.831s
     144user    0m0.444s
     145sys     0m0.016s
     146}}}
     147
    131148'''Simple test of rendering speed'''
    132149