Changes between Version 8 and Version 9 of FAQMiscellaneous


Ignore:
Timestamp:
Jan 10, 2014, 1:42:35 AM (10 years ago)
Author:
Mateusz Łoskot
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQMiscellaneous

    v8 v9  
    9090== What XML parsers are available or used in GDAL/OGR? ==
    9191
    92 Based on [http://lists.osgeo.org/pipermail/gdal-dev/2014-January/037839.html Preferred XML parsers] thread:
    93 
    94 We have a variety of XML parsers used :
     92Based on [http://lists.osgeo.org/pipermail/gdal-dev/2014-January/037839.html Preferred XML parsers] thread, we have a variety of XML parsers used:
    9593 * The built-in CPLMiniXML parser (port/cpl_minixml.h) that is a simple DOM parser without any fancy feature (it doesn't have explicit support for encodings for example. If you've need for recoding, you'll have to do it explicitely with CPLRecode() API) but that works well and is used for parsing PAM .aux.xml, .vrt, etc.
    9694 * Expat for SAX parsing in quite a lot of OGR drivers : GPX, GeoRSS, GML, XLSX, ODS, SVG.