Changes between Version 67 and Version 68 of Grass7/VectorLib/OGRInterface


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Grass7/VectorLib/OGRInterface

    v67 v68  
    101101=== Optimalization ===
    102102
     103Most 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
    103113'''Simple test of rendering speed'''
    104114