Changes between Version 29 and Version 30 of FAQGeneral


Ignore:
Timestamp:
Aug 24, 2023, 3:32:33 AM (8 months ago)
Author:
Even Rouault
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQGeneral

    v29 v30  
    11= [wiki:FAQ] - General =
    22
    3 [[PageOutline(2,,inline)]]
    4 
    5 
    6 == What does GDAL stand for? ==
    7 
    8 GDAL - Geospatial Data Abstraction Library
    9 
    10 It is sometimes pronounced "goo-doll" (a bit like goo-gle), while others pronounce it "gee-doll," and others pronounce it "gee-dall."
    11 
    12 == What is this OGR stuff? ==
    13 
    14 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://www.gdal.org/ogr/. 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.
    15 
    16 == What does OGR stand for? ==
    17 
    18 OGR used to stand for ''OpenGIS Simple Features Reference Implementation''. However, since OGR is not fully compliant with the OpenGIS Simple Feature specification and is not approved as a reference implementation of the spec the name was changed to ''OGR Simple Features Library''. The only meaning of OGR in this name is historical. OGR is also the prefix used everywhere in the source of the library for class names, filenames, etc.
    19 
    20 == What does CPL stand for? ==
    21 
    22 Common Portability Library. Think of it as GDAL internal cross-platform standard library. Back in the early days of GDAL development, when cross-platform development as well as compatibility and standard conformance of compilers was a challenge (or PITA), CPL proved necessary for smooth portability of GDAL/OGR.
    23 
    24 CPL, or parts of it, is used by some projects external to GDAL (eg. [https://github.com/mapgears/mitab/ MITAB], [https://trac.osgeo.org/geotiff/browser/trunk/libgeotiff libgeotiff]).
    25 
    26 == When was the GDAL project started? ==
    27 
    28 In late 1998, Frank Warmerdam started to work as independent professional on the GDAL/OGR library.
    29 
    30 == Is GDAL/OGR proprietary software? ==
    31 
    32 No, GDAL/OGR is a [http://en.wikipedia.org/wiki/FLOSS Free and Open Source Software].
    33 
    34 == What license does GDAL/OGR use? ==
    35 
    36 GDAL/OGR library is distributed under the terms of [http://en.wikipedia.org/wiki/X11_License X11]/[http://www.opensource.org/licenses/mit-license.php MIT] License.
    37 
    38 It is intended to give you permission to do whatever you want with the GDAL source code: download, modify, redistribute as you please, including building proprietary commercial software, no permission from Frank Warmerdam, [http://www.osgeo.org/ OSGeo Foundation] or anyone else is required.
    39 
    40 A few portions of GDAL is under slightly different terms. For instance the [http://www.libpng.org/ libpng], [http://www.ijg.org/ libjpeg], [http://remotesensing.org/libtiff/ libtiff], and [http://geotiff.osgeo.org/ 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.
    41 
    42 {{{
    43 Copyright (c) 2000, Frank Warmerdam
    44 
    45 Permission is hereby granted, free of charge, to any person obtaining a
    46 copy of this software and associated documentation files (the "Software"),
    47 to deal in the Software without restriction, including without limitation
    48 the rights to use, copy, modify, merge, publish, distribute, sublicense,
    49 and/or sell copies of the Software, and to permit persons to whom the
    50 Software is furnished to do so, subject to the following conditions:
    51 
    52 The above copyright notice and this permission notice shall be included
    53 in all copies or substantial portions of the Software.
    54 
    55 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    56 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    57 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    58 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    59 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    60 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    61 DEALINGS IN THE SOFTWARE.
    62 }}}
    63 
    64 A more complete collection of license terms for GDAL/OGR and subcomponents is included within the software distribution in the [http://svn.osgeo.org/gdal/trunk/gdal/LICENSE.TXT LICENSE.TXT] file.
    65 
    66 == What operating systems does GDAL-OGR run on? ==
    67 
    68 You can use GDAL/OGR on all modern [http://en.wikipedia.org/wiki/Unix-like flavors of Unix]: Linux, Solaris, Mac OS X, Solaris; and most versions of [http://en.wikipedia.org/wiki/Windows Microsoft Windows] (NT/2000/XP/Vista/CE). Both, 32-bit and 64-bit architectures are supported.
    69 
    70 If you have used GDAL/OGR on operating system or computer architecture not listed above, don't hesitate to [http://lists.osgeo.org/mailman/listinfo/gdal-dev tell us your story].
    71 
    72 == Is there a graphical user interface to GDAL/OGR? ==
    73 
    74 See [wiki:SoftwareUsingGdal Software using GDAL] page
    75 
    76 == What compiler can I use to build GDAL/OGR? ==
    77 
    78 GDAL/OGR is written in ANSI C and C++. It can be compiled with [wiki:SupportedCompilers all modern C/C++ compilers].
    79 
    80 == I have a question that's not answered here. Where can I get more information? ==
    81 
    82 If you don't find an answer after browsing this [wiki:FAQ], there are several other resources available:
    83 
    84  * Documentation of available on [http://gdal.org/ GDAL] and [http://gdal.org/ogr/ OGR] websites
    85  * [/gdal/wiki Wiki] pages
    86  * [wiki:MailingLists Mailing Lists]
    87  * IRC on channel #gdal on irc.freenode.net
    88 
    89 Keep in mind, the ''quality of the answer you get does bear some relation to the quality of the question''. If you need more detailed explanation of this, you can find it in essay [http://www.catb.org/~esr/faqs/smart-questions.html How To Ask Questions The Smart Way] by Eric S. Raymond.
    90 
    91 == When is the next release planned? ==
    92 
    93 See our [/roadmap Roadmap] page.
    94 
    95 == How do I add support for a new format? ==
    96 
    97 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].
    98 
    99 == How do I cite GDAL ? ==
    100 
    101 In general:
    102 
    103 GDAL. 201x. GDAL - Geospatial Data Abstraction Library: Version x.x.x, Open Source Geospatial Foundation, http://gdal.osgeo.org
    104 
    105 BibTeX entry:
    106 
    107 @Manual{GDAL ,[[BR]]
    108   title = {GDAL - Geospatial Data Abstraction Library, Version x.x.x},[[BR]]
    109   author = {{GDAL Development Team}},[[BR]]
    110   organization = {Open Source Geospatial Foundation},[[BR]]
    111   year = {201x},[[BR]]
    112   url = {http://www.gdal.org}, [[BR]]
    113 }[[BR]]
    114 
    115 
     3See https://gdal.org/faq.html