Thursday 26 October 2017

arcgis desktop - Limits to processing files from a list of rasters


I have written a script which selects all files that are within or subset by an area of interest polygon. This works fine but when the file list it's working has more than 150 records it stops comparing the extents after the 150th file. Does anyone know why?


the log files and script are here in googledocs as they are very long.


FileList = is a log of all 450 files which the program uses to iterate through. This is generated by FileList = arcpy.ListRasters()


NoSubset – is a log of files which aren’t subset by the AOI. Note it finishes at 150


Success-Subset – is a log of all files that subset –note nothing beyond file


Success-Within – is a log of all the files within the AOI. 20 files are logged when there should be 54.


The ESRI log clearly shows that it stops processing beyond a certain point. I have included the tbx in the zip.


Any suggestions for improving the coding would be appreciated as well. Note that I have turned the copy file and subset file functions off and am just using the generated csv's (link to files) rather than creating gigs of new files.




Answer



Figured out that it was an issue with projections. It's all fine now. Give me a shout if anyone would like the code.


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...