Where is the official documentation of gdal/ogr?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












Could someone please let me know where I can find the official docs for gdal/ogr python API? I am looking for something comprehensive which shows all the classes with descriptions of their attributes, methods and input/output types. So far I have been using https://www.gdal.org/annotated.html but this appears to have been generated for an older version of gdal/ogr. For instance I am using gdal version 2.2.2 and it appears that in the docs the OGRDriver class is not shown, only the GDALdriver class is shown. At the bottom of the link the following is stated:




Created for gdal by doxygen 1.8.8




I'm not sure if 1.8.8 refers to gdal version or doxygen version, in any case I would like to find the proper documentation for the version of gdal I am using? THanks










share|improve this question

























    up vote
    1
    down vote

    favorite












    Could someone please let me know where I can find the official docs for gdal/ogr python API? I am looking for something comprehensive which shows all the classes with descriptions of their attributes, methods and input/output types. So far I have been using https://www.gdal.org/annotated.html but this appears to have been generated for an older version of gdal/ogr. For instance I am using gdal version 2.2.2 and it appears that in the docs the OGRDriver class is not shown, only the GDALdriver class is shown. At the bottom of the link the following is stated:




    Created for gdal by doxygen 1.8.8




    I'm not sure if 1.8.8 refers to gdal version or doxygen version, in any case I would like to find the proper documentation for the version of gdal I am using? THanks










    share|improve this question























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      Could someone please let me know where I can find the official docs for gdal/ogr python API? I am looking for something comprehensive which shows all the classes with descriptions of their attributes, methods and input/output types. So far I have been using https://www.gdal.org/annotated.html but this appears to have been generated for an older version of gdal/ogr. For instance I am using gdal version 2.2.2 and it appears that in the docs the OGRDriver class is not shown, only the GDALdriver class is shown. At the bottom of the link the following is stated:




      Created for gdal by doxygen 1.8.8




      I'm not sure if 1.8.8 refers to gdal version or doxygen version, in any case I would like to find the proper documentation for the version of gdal I am using? THanks










      share|improve this question













      Could someone please let me know where I can find the official docs for gdal/ogr python API? I am looking for something comprehensive which shows all the classes with descriptions of their attributes, methods and input/output types. So far I have been using https://www.gdal.org/annotated.html but this appears to have been generated for an older version of gdal/ogr. For instance I am using gdal version 2.2.2 and it appears that in the docs the OGRDriver class is not shown, only the GDALdriver class is shown. At the bottom of the link the following is stated:




      Created for gdal by doxygen 1.8.8




      I'm not sure if 1.8.8 refers to gdal version or doxygen version, in any case I would like to find the proper documentation for the version of gdal I am using? THanks







      python gdal ogr






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 hours ago









      user32882

      1,00611124




      1,00611124




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          6
          down vote



          accepted










          You can find official GDAL documentation at https://gdal.org/



          All classes documentations are here:



          • C/C++ API - https://gdal.org/hierarchy.html

          • Python API - https://gdal.org/python/

          Also you can read Raster API tutorial and Vector API tutorial



          For python there are examples in tutorial, but the best place is GDAL tests, which written in python: https://github.com/OSGeo/gdal/tree/master/autotest



          Most of python usage are covered by this tests.






          share|improve this answer






















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "79"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f298458%2fwhere-is-the-official-documentation-of-gdal-ogr%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            6
            down vote



            accepted










            You can find official GDAL documentation at https://gdal.org/



            All classes documentations are here:



            • C/C++ API - https://gdal.org/hierarchy.html

            • Python API - https://gdal.org/python/

            Also you can read Raster API tutorial and Vector API tutorial



            For python there are examples in tutorial, but the best place is GDAL tests, which written in python: https://github.com/OSGeo/gdal/tree/master/autotest



            Most of python usage are covered by this tests.






            share|improve this answer


























              up vote
              6
              down vote



              accepted










              You can find official GDAL documentation at https://gdal.org/



              All classes documentations are here:



              • C/C++ API - https://gdal.org/hierarchy.html

              • Python API - https://gdal.org/python/

              Also you can read Raster API tutorial and Vector API tutorial



              For python there are examples in tutorial, but the best place is GDAL tests, which written in python: https://github.com/OSGeo/gdal/tree/master/autotest



              Most of python usage are covered by this tests.






              share|improve this answer
























                up vote
                6
                down vote



                accepted







                up vote
                6
                down vote



                accepted






                You can find official GDAL documentation at https://gdal.org/



                All classes documentations are here:



                • C/C++ API - https://gdal.org/hierarchy.html

                • Python API - https://gdal.org/python/

                Also you can read Raster API tutorial and Vector API tutorial



                For python there are examples in tutorial, but the best place is GDAL tests, which written in python: https://github.com/OSGeo/gdal/tree/master/autotest



                Most of python usage are covered by this tests.






                share|improve this answer














                You can find official GDAL documentation at https://gdal.org/



                All classes documentations are here:



                • C/C++ API - https://gdal.org/hierarchy.html

                • Python API - https://gdal.org/python/

                Also you can read Raster API tutorial and Vector API tutorial



                For python there are examples in tutorial, but the best place is GDAL tests, which written in python: https://github.com/OSGeo/gdal/tree/master/autotest



                Most of python usage are covered by this tests.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 1 hour ago

























                answered 1 hour ago









                Dmitry Baryshnikov

                2,050713




                2,050713



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f298458%2fwhere-is-the-official-documentation-of-gdal-ogr%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Comments

                    Popular posts from this blog

                    Long meetings (6-7 hours a day): Being “babysat” by supervisor

                    Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

                    Confectionery