Changes between Version 12 and Version 13 of SoCKMLRead


Ignore:
Timestamp:
Jun 8, 2007, 2:41:13 AM (17 years ago)
Author:
Mateusz Łoskot
Comment:

Started XML Parser section

Legend:

Unmodified
Added
Removed
Modified
  • SoCKMLRead

    v12 v13  
    11== Todo ==
     2
    23 * check out Xerces and Expat
    34 * explore existing code in gdal
    45
    56== KML 2.1 or 2.2 ==
     7
    68Points against 2.2:
    79 * Still beta (date 05.06.2007)
     
    911Points for 2.2:
    1012 * Support for Image Pyramids
     13
     14== XML Parser ==
     15
     16The very first task is to choose XML parser that will be used as a foundation of the KML driver. There are many questions that have to be answered:
     17 * SAX or DOM?
     18 * provide XML validation for KML documents (mandatory, optional, none)?
     19 * ...
     20
     21
     22There are 3 or 4 XML parsers under our consideration:
     23 * [http://expat.sourceforge.net/ Expat]
     24 * [http://xml.apache.org/xerces-c/index.html Xerces]
     25 * [source:trunk/gdal/port/cpl_minixml.h minixml]
     26 * [http://www.xmlsoft.org/ libXML]
     27
     28Here is very [http://xmlbench.sourceforge.net/results/features200303/index.html detailed comparison] (made in 2003) of XML parsing libraries that may be helpful during the analysis.
     29
     30
    1131
    1232== Links ==