<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: arcpy.Clip_analysis error (can't find the cause) in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706491#M54758</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree that the arcpy.da cursors are far better for almost all applications. They are cleaner to deal with (no cursor variables left around to delete) and are 10 to 100x faster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 May 2015 00:53:40 GMT</pubDate>
    <dc:creator>curtvprice</dc:creator>
    <dc:date>2015-05-06T00:53:40Z</dc:date>
    <item>
      <title>arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706482#M54749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I updated a script to clip wetlands data per county. Some counties work, but for others the Clip analysis fails.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import time

# Start time
start = time.time()
print('Prepping wetlands county clipped data')

# Enivornment variables
arcpy.env.overwriteOutput = True
arcpy.env.workspace = 'in_memory'
arcpy.env.outputCoordinateSystem = arcpy.SpatialReference('NAD 1983 UTM Zone 12N')

# Input paths
countyPath = r'Counties'
wetlandsPath = r'UT_Wetlands'

# Output path
outFolder = r'output.gdb'

# Create feature dataset
wetlandsFolder = '{}/Wetlands'.format(outFolder)
if not arcpy.Exists(wetlandsFolder):
&amp;nbsp; arcpy.CreateFeatureDataset_management(outFolder, 'Wetlands')

arcpy.MakeFeatureLayer_management(countyPath, 'countyLayer')

maxCount = len(idList)
count = 1

countyRows = arcpy.SearchCursor(countyPath)
for countyRow in countyRows:

&amp;nbsp; county = str(&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;countyRow.NAME)&lt;/SPAN&gt;.replace(' ', '_')
&amp;nbsp;&amp;nbsp; 
&amp;nbsp; outFile = '{}/Wetlands/{}_Wetlands'.format(outFolder, county)

&amp;nbsp; query = '"NAME" = \'' + str(countyRow.NAME) + '\''
&amp;nbsp; arcpy.SelectLayerByAttribute_management('countyLayer', 'NEW_SELECTION', query)

&amp;nbsp; print 'Clipping ' + str(count) + ' out of ' + str(maxCount)

&amp;nbsp; arcpy.Clip_analysis(wetlandsPath, 'countyLayer', outFile)

&amp;nbsp; arcpy.SelectLayerByAttribute_management('countyLayer', 'CLEAR_SELECTION')

&amp;nbsp; count += 1

&amp;nbsp; print 'Working on wetlands for ' + county.replace('_', ' ') + ' county...'

&amp;nbsp; # Here I create variables

&amp;nbsp; # Here I add new fields

&amp;nbsp; # Here I populate the new fields with the created variables

del countyRow, countyRows
&amp;nbsp;&amp;nbsp; 
# Finish
end = time.time()
print '\nFinished, run time', time.strftime('%M:%S', time.localtime(end - start))&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script will work until it gets to SANPETE county, which gives this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcgisscripting.ExecuteError: ERROR 999999: Error executing function.&lt;/P&gt;&lt;P&gt;The table was not found.&lt;/P&gt;&lt;P&gt;The table was not found. [SANPETE_Wetlands]&lt;/P&gt;&lt;P&gt;The table was not found.&lt;/P&gt;&lt;P&gt;The table was not found. [SANPETE_Wetlands]&lt;/P&gt;&lt;P&gt;Invalid Topology [Incomplete void poly.]&lt;/P&gt;&lt;P&gt;Failed to execute (Clip).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tracked the error to the clip function. At first I thought there was an error in the syntax, then I thought arcpy was getting confused as to where to look for the created clipped feature because I was saving it in memory, then I thought maybe the wetlands data was just too big, or there is something wrong with the attribute data for the SANPETE county, but it's non of those. I tried skipping SANPETE but then it runs for a while and fails in BEAVER county.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm running out of ideas as to what it may be. I tried the clip manually in arcMap and it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions as to what else to try or do you see anything I'm missing in the script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:41:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706482#M54749</guid>
      <dc:creator>MichaelSouffront</dc:creator>
      <dc:date>2021-12-12T05:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706483#M54750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This sure looks like a path name / workspace problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are the counties that work ones with shorter names? Is there any other way that the county names for the ones that are failing are different?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing to look out for is that all names need to be unique in a geodatabase (that includes objects inside feature datasets; you can't have "mypoly" and "myfds/mypoly" in the same geodatabase).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 May 2015 02:09:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706483#M54750</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2015-05-02T02:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706484#M54751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;Have you tried to manual select on SANPETE to see if it can be selected and a proper polygon?&amp;nbsp; Since it is saying it is getting invalid topology, I'm assuming IF is actually is select, it has an error.&amp;nbsp; &lt;/P&gt;&lt;P&gt;IS this the first selection in the list, or do some complete successfully?&amp;nbsp; I'm assuming some do, so..&lt;/P&gt;&lt;P&gt;Suggestions&lt;/P&gt;&lt;P&gt;-&lt;BR /&gt;- select the polygon manually and inspect it.&amp;nbsp; Look at the attribute to make sure these isn't any special (maybe hidden?) character that prevents it from being select properly.&lt;/P&gt;&lt;P&gt;- Make a copy of the FC you are selecting from and run &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000003v000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000003v000000"&gt;Fix Geometry&lt;/A&gt;&amp;nbsp; on it, and then try using this file as input.&amp;nbsp; That is the link to 10.2 help.&amp;nbsp; If you are using 10.3,&amp;nbsp; &lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/repair-geometry.htm" title="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/repair-geometry.htm"&gt;Repair Geometry—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the first record (that is, this is the first in the list), then it may something else, but I didn't look close because of the topology error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 May 2015 03:39:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706484#M54751</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-05-02T03:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706485#M54752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The first couple counties clip fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I ran the clip manually for the Sanpete county in arcmap and the clip works. I assumed that the geometry was okay because of that, but I'll run the repair geometry on Monday just in case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 May 2015 23:21:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706485#M54752</guid>
      <dc:creator>MichaelSouffront</dc:creator>
      <dc:date>2015-05-02T23:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706486#M54753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just FYI, a really good way to make sure a table name is legal is instead of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14306310468666818 jive_text_macro" data-renderedposition="50_8_912_16" jivemacro_uid="_14306310468666818"&gt;&lt;P&gt;county = str(countyRow.NAME).replace(' ', '_')&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do this (btw, NAME is already a string field, so no reason to str() it)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="_jivemacro_uid_14306310541775203 jive_macro_code jive_text_macro" data-renderedposition="129_8_912_16" jivemacro_uid="_14306310541775203"&gt;&lt;P&gt;county = arcpy.ValidateTableName(countyRow.NAME, wetlandsFolder)&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This takes care of any other special cases that come up, for example, other special characters that may be lurking in the name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 May 2015 05:31:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706486#M54753</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2015-05-03T05:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706487#M54754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One thing that you are doing there that is a little dicey is you are looping on a cursor based on a feature table and then doing processing and selection on a layer that is pointing to that same feature table. You may have better luck if you copy your data so you aren't looping point at the same dataset you are doing selections on.... I know this should work but I have run into trouble in the past.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another approach is to create a list of county names and then loop on that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;lyrCounty = arcpy.MakeFeatureLayer_management(countyPath, 'countyLayer')
names = []
with arcpy.da.SearchCursor(lyrCounty, "NAME") as rows:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in rows:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; names.append(row[0])
names = list(set(names)) # unique-ize list ( in case of multi-poly counties)

for name in names:
&amp;nbsp;&amp;nbsp;&amp;nbsp; where = &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;"NAME = '{}'".format(name)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SelectLayerByAttributes(lyrCounty, "", where)
&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:41:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706487#M54754</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-12-12T05:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706488#M54755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's how it was before. I would loop through the counties and save them in a list and then loop through the list separately, I changed it hoping that making it more simple would help me find the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A coworker is now working on it to see if he can find the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. it's not the geometry either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 22:32:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706488#M54755</guid>
      <dc:creator>MichaelSouffront</dc:creator>
      <dc:date>2015-05-05T22:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706489#M54756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's a good suggestion, however it doesn't solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The .replace() was in the script before I updated it, I added the str() in case unicode strings were the ones causing the problem. but no.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 22:35:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706489#M54756</guid>
      <dc:creator>MichaelSouffront</dc:creator>
      <dc:date>2015-05-05T22:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706490#M54757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are you executing this code?&amp;nbsp; As a standalone script?&amp;nbsp; In an ArcGIS Desktop interactive Python window?&amp;nbsp; If the latter, are you running Background Processing?&amp;nbsp; (Not saying any of this is the issue, but it helps to know the specifics of where/how the code is being run).&amp;nbsp; Also, what version of ArcGIS are you running?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens if you programmatically only pass it SANPETE, i.e., add a WHERE clause to your search cursor to only return SANPETE.&amp;nbsp; Speaking of cursors, I see you are using the older style search cursor.&amp;nbsp; Have you tried using a &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/arcpy-data-access/searchcursor-class.htm"&gt;ArcPy Data Access Search Cursor&lt;/A&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 00:41:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706490#M54757</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-05-06T00:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706491#M54758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree that the arcpy.da cursors are far better for almost all applications. They are cleaner to deal with (no cursor variables left around to delete) and are 10 to 100x faster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 00:53:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706491#M54758</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2015-05-06T00:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706492#M54759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Curtis pointed out, it's tidier to build a list first and then loop through it. Why is the counter starting at 1, and not at 0 ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 20:41:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706492#M54759</guid>
      <dc:creator>benberman</dc:creator>
      <dc:date>2015-05-06T20:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706493#M54760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Running as standalone from Spyder, also tried Pyscripter, ArcGIS 10.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We did tried the .da cursors to see if that was it, but no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See solution explained below.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 20:01:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706493#M54760</guid>
      <dc:creator>MichaelSouffront</dc:creator>
      <dc:date>2015-05-14T20:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706494#M54761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My coworker spent a couple of days on this and couldn't find the error either. At the end we just rewrote the whole thing differently.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The actual error was never found but at this does what we needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One thing we added that may have solved the problem was the simplify polygon function on the wetlands data. We believe that the wetlands data had some sliver in between counties or something like that, but there's still the exception that things ran fine when done manually so we will never know for sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all for your help anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 20:30:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706494#M54761</guid>
      <dc:creator>MichaelSouffront</dc:creator>
      <dc:date>2015-05-14T20:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.Clip_analysis error (can't find the cause)</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706495#M54762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For anyone else who might come across this, an answer on StackExchange worked for me. &lt;A href="http://gis.stackexchange.com/a/90531/10919"&gt;"this is a resources issue"&lt;/A&gt;​. Doing whatever you can to use fewer resources; e.g.:&lt;/P&gt;&lt;P&gt; - Ensure you're in a 64-bit/background environment)&lt;/P&gt;&lt;P&gt; - Generalize/Simplify your geometries&lt;/P&gt;&lt;P&gt; - Repair geometries&lt;/P&gt;&lt;P&gt; - Use fgdb (my issue was that I was processing data in an .mdb that some dinosaur had sent me)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best of luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 23:43:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-clip-analysis-error-can-t-find-the-cause/m-p/706495#M54762</guid>
      <dc:creator>ThomasLaxson</dc:creator>
      <dc:date>2016-05-03T23:43:29Z</dc:date>
    </item>
  </channel>
</rss>

