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;
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.
arcgis-pro
add a comment |
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.
arcgis-pro
add a comment |
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.
arcgis-pro
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.
arcgis-pro
arcgis-pro
edited Apr 7 at 2:28
Thomas Zuberbühler
asked Apr 7 at 1:03
Thomas ZuberbühlerThomas Zuberbühler
26118
26118
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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)
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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)
add a comment |
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)
add a comment |
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)
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)
edited Apr 7 at 13:47
Vince
14.8k32850
14.8k32850
answered Apr 7 at 2:19
Thomas ZuberbühlerThomas Zuberbühler
26118
26118
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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