How to get a list of all data sources used in a ArcGIS Pro project? The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Deleting 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
Keeping a retro style to sci-fi spaceships?
How did passengers keep warm on sail ships?
What force causes entropy to increase?
Can a flute soloist sit?
Am I ethically obligated to go into work on an off day if the reason is sudden?
How to read αἱμύλιος or when to aspirate
Why doesn't a hydraulic lever violate conservation of energy?
How do you keep chess fun when your opponent constantly beats you?
Do ℕ, mathbbN, BbbN, symbbN effectively differ, and is there a "canonical" specification of the naturals?
Accepted by European university, rejected by all American ones I applied to? Possible reasons?
What happens to a Warlock's expended Spell Slots when they gain a Level?
One-dimensional Japanese puzzle
Why not take a picture of a closer black hole?
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
Homework question about an engine pulling a train
For what reasons would an animal species NOT cross a *horizontal* land bridge?
Variable with quotation marks "$()"
Do I have Disadvantage attacking with an off-hand weapon?
Is 'stolen' appropriate word?
What do I do when my TA workload is more than expected?
Can withdrawing asylum be illegal?
How did the crowd guess the pentatonic scale in Bobby McFerrin's presentation?
Word for: a synonym with a positive connotation?
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
How to get a list of all data sources used in a ArcGIS Pro project?
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Deleting 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