<?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: CON causes crash in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578224#M8363</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The paths seem to be valid:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;dirName = C:/gis/enforcer
fgdbPath = C:/gis/enforcer/enforcer.gdb
analysisSinks = C:/gis/enforcer/enforcer.gdb/sinkanalysis
outName = C:/gis/enforcer/enforcer.gdb/zonemin01&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although there is an error on this line:&lt;/P&gt;&lt;P&gt;arcpy.env.s&lt;STRONG&gt;an&lt;/STRONG&gt;pRaster = dem &amp;nbsp; (it should be snapRaster)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... it is not causing the error you obtain. It is better to check the solution provided by&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/8829" target="_blank"&gt;Luke Pinner&lt;/A&gt;&amp;nbsp;and if that does not solve the problem, to check your write privileges on the output&amp;nbsp;fgdb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Als if you import the os module, it is recommended to use:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;analysisSinks &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fgdbPath&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"sinkanalysis"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... instead of this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;analysisSinks &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; fgdbPath &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"/"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"sinkanalysis"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 00:50:49 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2021-12-12T00:50:49Z</dc:date>
    <item>
      <title>CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578221#M8360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;import arcpy, os&lt;BR /&gt;from arcpy import env&lt;BR /&gt;from arcpy.sa import *&lt;/P&gt;&lt;P&gt;arcpy.env.workspace = "C:/gis/enforcer" #Dummy path&lt;/P&gt;&lt;P&gt;arcpy.env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;dem = "C:/gis/enforcer/dem" #Dummy path&lt;BR /&gt;rmseDEM = 0.09 #Dummy value&lt;BR /&gt;roads = "C:/gis/enforcer/roads.shp" #Dummy path&lt;BR /&gt;rails = "C:/gis/enforcer/rail.shp" #Dummy path&lt;BR /&gt;fgdb = "enforcer.gdb" #Dummy path&lt;/P&gt;&lt;P&gt;arcpy.env.cellSize = dem&lt;BR /&gt;arcpy.env.extent = dem&lt;BR /&gt;arcpy.env.sanpRaster = dem&lt;BR /&gt;desc = arcpy.Describe(dem)&lt;BR /&gt;demResolution = desc.meanCellHeight #Assumes a square&lt;BR /&gt;dirName = os.path.dirname(dem)&lt;BR /&gt;fgdbPath = dirName + "/" + fgdb&lt;/P&gt;&lt;P&gt;arcpy.CheckOutExtension("Spatial")&lt;/P&gt;&lt;P&gt;#-----------------------------------Identify Low Points----------------------------------&lt;BR /&gt;analysisSinks = fgdbPath + "/" + "sinkanalysis"&lt;BR /&gt;outName = fgdbPath + "/" + "zonemin01"&lt;BR /&gt;outZonalStats = ZonalStatistics(analysisSinks, "OBJECTID", dem, "MINIMUM", "NODATA")&lt;BR /&gt;outZonalStats.save(outName)&lt;BR /&gt;outName02 = "minpnt01" #fgdbPath + "/"&lt;BR /&gt;outCon = Con(dem == outName, 1)&lt;BR /&gt;outCon.save(outName02)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;However, Con in the next to last line seems to crash PythonWin every chance it gets or throws&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;ERROR 010240. I've tried everything from saving it as a TIF to switching to a different directory to no avail. Any recommendations?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 20:23:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578221#M8360</guid>
      <dc:creator>JohnWall</dc:creator>
      <dc:date>2016-11-01T20:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578222#M8361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;print out the path concatenation for outName and outName2... one of the two is not good. &amp;nbsp;You will want to make sure that esri grid filenames don't end in a '/' for sure&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 20:33:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578222#M8361</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-11-01T20:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578223#M8362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to change outname to Raster(outname) so you're comparing dem to a raster object instead of a string. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 08:36:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578223#M8362</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-11-02T08:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578224#M8363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The paths seem to be valid:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;dirName = C:/gis/enforcer
fgdbPath = C:/gis/enforcer/enforcer.gdb
analysisSinks = C:/gis/enforcer/enforcer.gdb/sinkanalysis
outName = C:/gis/enforcer/enforcer.gdb/zonemin01&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although there is an error on this line:&lt;/P&gt;&lt;P&gt;arcpy.env.s&lt;STRONG&gt;an&lt;/STRONG&gt;pRaster = dem &amp;nbsp; (it should be snapRaster)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... it is not causing the error you obtain. It is better to check the solution provided by&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/8829" target="_blank"&gt;Luke Pinner&lt;/A&gt;&amp;nbsp;and if that does not solve the problem, to check your write privileges on the output&amp;nbsp;fgdb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Als if you import the os module, it is recommended to use:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;analysisSinks &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fgdbPath&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"sinkanalysis"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... instead of this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;analysisSinks &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; fgdbPath &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"/"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"sinkanalysis"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:50:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578224#M8363</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-12T00:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578225#M8364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Luke,&lt;/P&gt;&lt;P&gt;Thanks for your suggestion. I changed:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;outCon = Con(dem == outName, 1)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;outCon = Con(dem == Raster(outName), 1)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;But, I am still getting the same error. Is there something else I am doing incorrectly?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 14:24:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578225#M8364</guid>
      <dc:creator>JohnWall</dc:creator>
      <dc:date>2016-11-02T14:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578226#M8365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Xander,&lt;/P&gt;&lt;P&gt;Thank you for your recommendations. I've gone through my code and changed:&lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; border: 0px; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;analysisSinks &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039); border: 0px; font-weight: inherit;"&gt;=&lt;/SPAN&gt; fgdbPath &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039); border: 0px; font-weight: inherit;"&gt;+&lt;/SPAN&gt; &lt;SPAN class="" style="color: #669900; border: 0px; font-weight: inherit;"&gt;"/"&lt;/SPAN&gt; &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039); border: 0px; font-weight: inherit;"&gt;+&lt;/SPAN&gt; &lt;SPAN class="" style="color: #669900; border: 0px; font-weight: inherit;"&gt;"sinkanalysis"&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; border: 0px; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;analysisSinks &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039); border: 0px; font-weight: inherit;"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;(&lt;/SPAN&gt;fgdbPath&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;,&lt;/SPAN&gt; &lt;SPAN class="" style="color: #669900; border: 0px; font-weight: inherit;"&gt;"sinkanalysis"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #999999; border: 0px; font-weight: inherit;"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;as you recommended.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, thank you for noting the snapRaster typo. I've fixed that as well. Interesting how it didn't seem to throw an error in another script which I pulled the header information from on this code. I'll go back and fix it there too.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 14:26:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578226#M8365</guid>
      <dc:creator>JohnWall</dc:creator>
      <dc:date>2016-11-02T14:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578227#M8366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;outName:&amp;nbsp;C:/gis/enforcer\enforcer.gdb\zonemin01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outName02:&amp;nbsp;C:/gis/enforcer\enforcer.gdb\minpnt01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure what the issue is...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 14:27:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578227#M8366</guid>
      <dc:creator>JohnWall</dc:creator>
      <dc:date>2016-11-02T14:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578228#M8367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do it manually with the same files... if it works, copy the syntax from the Results window to see what is required... it is probably something small and poking around trying to get a script to work before the actual process has been tested can be futile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 14:29:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578228#M8367</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-11-02T14:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578229#M8368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;Thanks for your response. The tool output:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;outCon = Con(Raster(r"dem") == Raster(r"outName"), 1)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I tried that, as well as changing it to:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN&gt;outCon = Con(Raster(dem) == Raster(outName), 1)&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;All of which end up with the same issue:&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN&gt;RuntimeError: ERROR 010240: Could not save raster dataset to C:\gis\enforcer\enforcer.gdb\zonemin01 with output format FGDBR.&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;I don't understand why there would be a FGDBR write error if I just created the &lt;SPAN&gt;FGDBR in the script immediately&amp;nbsp;before this one. Can the write permissions be set to anyone from within Python?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;-John&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 14:41:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578229#M8368</guid>
      <dc:creator>JohnWall</dc:creator>
      <dc:date>2016-11-02T14:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578230#M8369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are they the results from the &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/executing-tools/using-the-results-window.htm"&gt;Results Window&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 14:55:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578230#M8369</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-11-02T14:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: CON causes crash</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578231#M8370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Changed the line:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;outName = os.path.join(fgdbPath,"minpnt01")&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;outName02 = os.path.join(dirName,"minpnt01.tif")&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;seems to run now...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2016 14:57:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-causes-crash/m-p/578231#M8370</guid>
      <dc:creator>JohnWall</dc:creator>
      <dc:date>2016-11-02T14:57:44Z</dc:date>
    </item>
  </channel>
</rss>

