Tagged Questions
0
votes
1answer
106 views
Parsing list object file paths for file name
I am trying to automate a naming process that takes the file name from a list of file paths to name other folders, geodatabases, zipfiles, etc.
The problem I'm running into is that, I assume, I am ...
3
votes
2answers
141 views
Process every 100 records in list
An arcpy merge process is failing due to the size of the datasets and I need to just merge every 100 tiles before it goes on to the next 100 tiles.
I wrote the following snippet but it is just ...
2
votes
1answer
90 views
Convert a List to a file list to use in an arcpy tool
I just can't figure out how to feed a list of files into an arcpy tool...
I have
List_tif.append(os.getcwd()+"\\Stage1\\"+name+"\\GeoTif\\"+name+"_"+str(ddp.pageRow.PageName) + ".tif;")
That ...