Changes between Version 13 and Version 14 of FAQ

Show
Ignore:
Timestamp:
04/22/07 10:42:54 (6 years ago)
Author:
mloskot
Comment:

Migrated General section to separate page

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v13 v14  
    11= GDAL FAQ = 
    22 
    3  1. [wiki:FAQGeneral] 
     3 1. [wiki:FAQGeneral General] 
    44 2. [wiki:FAQInstallationAndBuilding] 
    55 3. [wiki:FAQRaster] 
     
    77 5. [wiki:FAQCoordinateSystemsAndProjections] 
    88 6. [wiki:FAQMiscellaneous] 
    9  
    10  
    11 == General == 
    12  
    13 === What is GDAL? === 
    14  
    15 GDAL name is usually used to name one of following: 
    16  
    17  * project of translation libraries for raster (GDAL) and vector (OGR) data formats, so in this case ''GDAL = GDAL + OGR'' 
    18  * translator library for raster geospatial data formats. 
    19  
    20 === What's this OGR Stuff? === 
    21  
    22 The 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.  
    23  
    24 === What exactly was the license terms for GDAL? === 
    25  
    26 The 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. 
    27  
    28 {{{ 
    29 Copyright (c) 2000, Frank Warmerdam 
    30  
    31 Permission is hereby granted, free of charge, to any person obtaining a 
    32 copy of this software and associated documentation files (the "Software"), 
    33 to deal in the Software without restriction, including without limitation 
    34 the rights to use, copy, modify, merge, publish, distribute, sublicense, 
    35 and/or sell copies of the Software, and to permit persons to whom the 
    36 Software is furnished to do so, subject to the following conditions: 
    37  
    38 The above copyright notice and this permission notice shall be included 
    39 in all copies or substantial portions of the Software. 
    40  
    41 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
    42 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
    43 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
    44 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
    45 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
    46 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
    47 DEALINGS IN THE SOFTWARE. 
    48 }}} 
    49  
    50 === How do I add support for a new format? === 
    51  
    52 To 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]. 
    539 
    5410== Installation and Building ==