How to get a list of all data sources used in a ArcGIS Pro project? The 2019 Stack Overflow Developer Survey Results Are In Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar ManaraDeleting ArcGIS Project created using ArcGIS Pro?Preventing Project pane of ArcGIS Pro from re-confirming hundreds of Delete requests from multiple select?Saving active view into ArcGIS Pro project using ArcPy?Switching data source of layer to new feature class using ArcPy with ArcGIS Pro 2.0?Finding current map in ArcGIS Pro Project using ArcPy?Exporting All features in view extent using ArcGIS Pro?How to configure a custom ArcGIS Pro Add-inSeeking ArcGIS Pro tool to batch change data sources?ArcGIS Pro Project Template using Absolute PathsUse Python to import MXDs into an ArcGIS Pro Project and add the MXD file name to the imported maps

What happens to a Warlock's expended Spell Slots when they gain a Level?

Is this wall load bearing? Blueprints and photos attached

Why are PDP-7-style microprogrammed instructions out of vogue?

How do spell lists change if the party levels up without taking a long rest?

Identify 80s or 90s comics with ripped creatures (not dwarves)

Using dividends to reduce short term capital gains?

Word for: a synonym with a positive connotation?

Why doesn't a hydraulic lever violate conservation of energy?

Working through the single responsibility principle (SRP) in Python when calls are expensive

What force causes entropy to increase?

Is every episode of "Where are my Pants?" identical?

Do I have Disadvantage attacking with an off-hand weapon?

Circular reasoning in L'Hopital's rule

What do I do when my TA workload is more than expected?

How do I design a circuit to convert a 100 mV and 50 Hz sine wave to a square wave?

Why not take a picture of a closer black hole?

Drawing vertical/oblique lines in Metrical tree (tikz-qtree, tipa)

Did the new image of black hole confirm the general theory of relativity?

What aspect of planet Earth must be changed to prevent the industrial revolution?

Do working physicists consider Newtonian mechanics to be "falsified"?

Accepted by European university, rejected by all American ones I applied to? Possible reasons?

What was the last x86 CPU that did not have the x87 floating-point unit built in?

Mortgage adviser recommends a longer term than necessary combined with overpayments

Define a list range inside a list



How to get a list of all data sources used in a ArcGIS Pro project?



The 2019 Stack Overflow Developer Survey Results Are In
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraDeleting ArcGIS Project created using ArcGIS Pro?Preventing Project pane of ArcGIS Pro from re-confirming hundreds of Delete requests from multiple select?Saving active view into ArcGIS Pro project using ArcPy?Switching data source of layer to new feature class using ArcPy with ArcGIS Pro 2.0?Finding current map in ArcGIS Pro Project using ArcPy?Exporting All features in view extent using ArcGIS Pro?How to configure a custom ArcGIS Pro Add-inSeeking ArcGIS Pro tool to batch change data sources?ArcGIS Pro Project Template using Absolute PathsUse Python to import MXDs into an ArcGIS Pro Project and add the MXD file name to the imported maps



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Is there a way to generate (or access) a list of all data sources used in a ArcGIS Pro project?



I would like to avoid going through each layer's property dialog.



enter image description here










share|improve this question






























    0















    Is there a way to generate (or access) a list of all data sources used in a ArcGIS Pro project?



    I would like to avoid going through each layer's property dialog.



    enter image description here










    share|improve this question


























      0












      0








      0








      Is there a way to generate (or access) a list of all data sources used in a ArcGIS Pro project?



      I would like to avoid going through each layer's property dialog.



      enter image description here










      share|improve this question
















      Is there a way to generate (or access) a list of all data sources used in a ArcGIS Pro project?



      I would like to avoid going through each layer's property dialog.



      enter image description here







      arcgis-pro






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 7 at 2:28







      Thomas Zuberbühler

















      asked Apr 7 at 1:03









      Thomas ZuberbühlerThomas Zuberbühler

      26118




      26118




















          1 Answer
          1






          active

          oldest

          votes


















          1














          I found a solution using Python and wrote a script.



          aprx = arcpy.mp.ArcGISProject("CURRENT")
          maps = aprx.listMaps()
          for map in maps:
          print ('--------------------------------------------------------------')
          print (map.name)
          print ('--------------------------------------------------------------')
          layers = map.listLayers()
          for layer in layers:
          if layer.supports('NAME') and layer.supports('LONGNAME')
          and layer.supports('DATASOURCE'):
          print (layer.longName + ' ---> ' + layer.dataSource)





          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',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            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%2f318002%2fhow-to-get-a-list-of-all-data-sources-used-in-a-arcgis-pro-project%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            I found a solution using Python and wrote a script.



            aprx = arcpy.mp.ArcGISProject("CURRENT")
            maps = aprx.listMaps()
            for map in maps:
            print ('--------------------------------------------------------------')
            print (map.name)
            print ('--------------------------------------------------------------')
            layers = map.listLayers()
            for layer in layers:
            if layer.supports('NAME') and layer.supports('LONGNAME')
            and layer.supports('DATASOURCE'):
            print (layer.longName + ' ---> ' + layer.dataSource)





            share|improve this answer





























              1














              I found a solution using Python and wrote a script.



              aprx = arcpy.mp.ArcGISProject("CURRENT")
              maps = aprx.listMaps()
              for map in maps:
              print ('--------------------------------------------------------------')
              print (map.name)
              print ('--------------------------------------------------------------')
              layers = map.listLayers()
              for layer in layers:
              if layer.supports('NAME') and layer.supports('LONGNAME')
              and layer.supports('DATASOURCE'):
              print (layer.longName + ' ---> ' + layer.dataSource)





              share|improve this answer



























                1












                1








                1







                I found a solution using Python and wrote a script.



                aprx = arcpy.mp.ArcGISProject("CURRENT")
                maps = aprx.listMaps()
                for map in maps:
                print ('--------------------------------------------------------------')
                print (map.name)
                print ('--------------------------------------------------------------')
                layers = map.listLayers()
                for layer in layers:
                if layer.supports('NAME') and layer.supports('LONGNAME')
                and layer.supports('DATASOURCE'):
                print (layer.longName + ' ---> ' + layer.dataSource)





                share|improve this answer















                I found a solution using Python and wrote a script.



                aprx = arcpy.mp.ArcGISProject("CURRENT")
                maps = aprx.listMaps()
                for map in maps:
                print ('--------------------------------------------------------------')
                print (map.name)
                print ('--------------------------------------------------------------')
                layers = map.listLayers()
                for layer in layers:
                if layer.supports('NAME') and layer.supports('LONGNAME')
                and layer.supports('DATASOURCE'):
                print (layer.longName + ' ---> ' + layer.dataSource)






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Apr 7 at 13:47









                Vince

                14.8k32850




                14.8k32850










                answered Apr 7 at 2:19









                Thomas ZuberbühlerThomas Zuberbühler

                26118




                26118



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318002%2fhow-to-get-a-list-of-all-data-sources-used-in-a-arcgis-pro-project%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Crop image to path created in TikZ? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Crop an inserted image?TikZ pictures does not appear in posterImage behind and beyond crop marks?Tikz picture as large as possible on A4 PageTransparency vs image compression dilemmaHow to crop background from image automatically?Image does not cropTikzexternal capturing crop marks when externalizing pgfplots?How to include image path that contains a dollar signCrop image with left size given

                    រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

                    Ромео және Джульетта Мазмұны Қысқаша сипаттамасы Кейіпкерлері Кино Дереккөздер Бағыттау мәзірі