Changes between Version 1 and Version 2 of FAQGeneral


Ignore:
Timestamp:
Apr 22, 2007, 10:39:21 AM (17 years ago)
Author:
Mateusz Łoskot
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQGeneral

    v1 v2  
    33[[PageOutline(2,,inline)]]
    44
    5 === What is GDAL? ===
     5== What is GDAL? ==
    66
    77GDAL name is usually used to name one of following:
     
    1010 * translator library for raster geospatial data formats.
    1111
    12 === What's this OGR Stuff? ===
     12== What's this OGR Stuff? ==
    1313
    1414The gdal/ogr tree holds source for a vector IO library inspired by [http://www.opengeospatial.org/standards OpenGIS Simple Features]. In theory it is separate from GDAL, but currently they reside in the same source tree and are somewhat entangled. More information can be found at http://ogr.maptools.org. It is my plan to properly fold OGR into GDAL properly at some point in the future. Then GDAL will be a raster and vector library.
    1515
    16 === What exactly was the license terms for GDAL? ===
     16== What exactly was the license terms for GDAL? ==
    1717
    1818The following terms are the same as X windows is released under, and is generally known as the [http://www.opensource.org/osi3.0/licenses/mit-license.php MIT License]. It is intended to give you permission to do whatever you want with the GDAL source, including building proprietary commercial software, without further permission from me, or requirement to distribute your source code. A few portions of GDAL under under slightly different terms. For instance the [http://www.libpng.org/ libpng], [http://www.ijg.org/ libjpeg], [http://remotesensing.org/libtiff/ libtiff], and [http://remotesensing.org/geotiff/geotiff.html libgeotiff] license terms may vary slightly though I don't think any of them differ in any significant way. Some external libraries which can be optionally used by GDAL are under radically different licenses.
     
    4040}}}
    4141
    42 === How do I add support for a new format? ===
     42== How do I add support for a new format? ==
    4343
    4444To some extent this is now covered by the [http://www.gdal.org/gdal_drivertut.html GDAL Driver Implementation Tutorial], and the [http://www.gdal.org/ogr/ogr_drivertut.html OGR Driver Implementation Tutorial].