<?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:  ERROR 999998 when saving a raster after Con in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272831#M21084</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried out your suggestions. I don’t think the file name and/or folder path was the issue. It failed even with basic locations like "G:/f1996.tif". Toe weed out any confusion about file paths, I invoked the os package and worked with it. As Curtis suggested I also switched to tif. I also cleaned out the rescaled folder.&lt;/P&gt;&lt;P&gt;The outcon command was the problem. It was not&amp;nbsp;doing the required calculations. However,&amp;nbsp; it&amp;nbsp;would do the simpler command that Dan suggested.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;But, the behavior of the Outcon command is bizarre.&lt;/P&gt;&lt;P&gt;It turns out I can get my outcon command to work if it is preceded by the simpler outcon command that Don suggested. Otherwise, it does not work. So my program only works if I define testRaster below and first do the simply outCon routine before performing the one I actually need. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy, numpy, os&lt;/P&gt;&lt;P&gt;from arcpy import env&lt;/P&gt;&lt;P&gt;from arcpy.sa import *&lt;/P&gt;&lt;P&gt;import time&lt;/P&gt;&lt;P&gt;start_time = time.time()&lt;/P&gt;&lt;P&gt;arcpy.CheckOutExtension("Spatial")&lt;/P&gt;&lt;P&gt;env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;env.workspace = "G:/GIS Data/DMSPOLSRC/Radiance_Calibrated"&lt;/P&gt;&lt;P&gt;arcpy.env.scratchWorkspace="G:/GIS Data/scratch"&lt;/P&gt;&lt;P&gt;inws="G:/GIS Data/DMSPOLSRC/Radiance_Calibrated"&lt;/P&gt;&lt;P&gt;outws="G:/GIS Data/DMSPOLSRC/Radiance_Calibrated/rescaled"&lt;/P&gt;&lt;P&gt;#1996&lt;/P&gt;&lt;P&gt;inRaster1 = Raster(os.path.join(inws,"F121996Copy/rad_v4avg_vis.tif"))&lt;/P&gt;&lt;P&gt;print inRaster1&lt;/P&gt;&lt;P&gt;testRaster=os.path.join(outws, "f121996test.tif")&lt;/P&gt;&lt;P&gt;outCon = Con((inRaster1==0), 0 , 1 )&lt;/P&gt;&lt;P&gt;outCon.save(testRaster)&lt;/P&gt;&lt;P&gt;print "Completed", testRaster&lt;/P&gt;&lt;P&gt;outRaster=os.path.join(outws, "f121996rsc.tif")&lt;/P&gt;&lt;P&gt;outCon = Con((inRaster1==0), 0 , 4.336+(0.915*inRaster1))&lt;/P&gt;&lt;P&gt;outCon.save(outRaster)&lt;/P&gt;&lt;P&gt;print "Completed", outRaster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Jun 2018 22:31:37 GMT</pubDate>
    <dc:creator>AreendamChanda</dc:creator>
    <dc:date>2018-06-23T22:31:37Z</dc:date>
    <item>
      <title>ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272826#M21079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to do a very simple calculation on a raster.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I have done this kind of work many times, but I can't figure out what has gone wrong this time around.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy, numpy&lt;BR /&gt;from arcpy import env&lt;BR /&gt;from arcpy.sa import *&lt;BR /&gt;import time&lt;BR /&gt;start_time = time.time()&lt;BR /&gt;arcpy.CheckOutExtension("Spatial")&lt;BR /&gt;env.overwriteOutput = True&lt;BR /&gt;env.workspace = "G:/GIS Data/DMSPOLSRC/Radiance_Calibrated"&lt;BR /&gt;arcpy.env.scratchWorkspace="G:/GIS Data/scratch"&lt;/P&gt;&lt;P&gt;#1996&lt;BR /&gt;inRaster1 = arcpy.Raster("F12_19960316-19970212/F12_19960316-19970212_rad_v4.avg_vis.tif")&lt;BR /&gt;outRaster="rescaled/f1296rsc"&lt;BR /&gt;tempRaster=0.915*inRaster1&lt;BR /&gt;outCon = Con((inRaster1 ==0), 0 , 4.336+tempRaster)&lt;BR /&gt;outCon.save(outRaster)&lt;BR /&gt;print time.time() - start_time, "seconds, f121996completed"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Python returns the following error message&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "G:\GIS Data\DMSPOLSRC\Radiance_Calibrated\rescaling.py", line 16, in &amp;lt;module&amp;gt;&lt;BR /&gt;outCon.save(outRaster)&lt;BR /&gt;RuntimeError: ERROR 999998: Unexpected Error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In other words something is going wrong when it tries to save the raster. I cant figure out for the life of me whats happening.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I should note the following&lt;/P&gt;&lt;P&gt;a) If I comment out the problematic line, it moves on and prints the time taken. In other words, it seems like there i no problem with the raster calculation itself.&lt;/P&gt;&lt;P&gt;b)&amp;nbsp; If I go into ArcMap&amp;nbsp;and use the raster calculator there, there is no problem if I&amp;nbsp; save the outRaster to an existing geodatabase folder. However, it will return the following error when I try to save it to the target folder&amp;nbsp; above:&lt;/P&gt;&lt;P&gt;Messages&lt;BR /&gt;Executing: RasterCalculator Con("F12_19960316-19970212_rad_v4.avg_vis.tif"==0,0, 4.336+0.915 * "F12_19960316-19970212_rad_v4.avg_vis.tif") "G:\GIS Data\DMSPOLSRC\Radiance_Calibrated\rescaled\f121996rsc"&lt;BR /&gt;Start Time: Fri Jun 22 11:26:13 2018&lt;BR /&gt;Con(Raster(r"F12_19960316-19970212_rad_v4.avg_vis.tif")==0,0, 4.336+0.915 * Raster(r"F12_19960316-19970212_rad_v4.avg_vis.tif"))&lt;BR /&gt;ERROR 000539: Error running expression: rcexec() &lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "&amp;lt;expression&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;File "&amp;lt;string&amp;gt;", line 8, in rcexec&lt;BR /&gt;RuntimeError: ERROR 999998: Unexpected Error.&lt;/P&gt;&lt;P&gt;Failed to create raster dataset&lt;BR /&gt;Failed to execute (RasterCalculator).&lt;BR /&gt;Failed at Fri Jun 22 11:26:14 2018 (Elapsed Time: 0.85 seconds)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running ArcGis&amp;nbsp;Desktop 10.6 and the python version is&amp;nbsp;2.7.14 (which comes with ArcGis).&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2018 16:32:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272826#M21079</guid>
      <dc:creator>AreendamChanda</dc:creator>
      <dc:date>2018-06-22T16:32:50Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272827#M21080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;spaces, dots, dashes and slashes I suspect.&amp;nbsp; It is not clear from your workspace setting whether&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;"F12_19960316-19970212/F12_19960316-19970212_rad_v4.avg_vis.tif")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;is a folder within a folder within the workspace, it has a slash, a dash and a double dot (the last is needed but 4.avg isn't&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;Try a simpler workspace on a local drive with simpler names&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2018 00:55:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272827#M21080</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-06-23T00:55:50Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272828#M21081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. Whittled it down to&amp;nbsp;&lt;/P&gt;&lt;P&gt;inRaster1 = Raster("F121996Copy/rad_v4avg_vis.tif")&amp;nbsp;&lt;/P&gt;&lt;P&gt;but still got the same error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2018 03:27:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272828#M21081</guid>
      <dc:creator>AreendamChanda</dc:creator>
      <dc:date>2018-06-23T03:27:19Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272829#M21082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really meant simplify your paths and names.&amp;nbsp; I know those are what you want but I was thinking&lt;/P&gt;&lt;P&gt;c:/test&amp;nbsp; where the *tif resides&lt;/P&gt;&lt;P&gt;test.tif&amp;nbsp; as the filename&lt;/P&gt;&lt;P&gt;in any event,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Con(Raster(test.tif) == 0, 0, 1)&lt;/P&gt;&lt;P&gt;that is simplify the Con statement to see if it is the Raster(test.tif) that is the problem OR the calculation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2018 04:02:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272829#M21082</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-06-23T04:02:06Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272830#M21083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;a) If I comment out the problematic line, it moves on and prints the time taken. In other words, it seems like there i no problem with the raster calculation itself.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The calculation doesn't happen until you do the .save() - so if you have an issue with the output workspace it will only happen when you to the save. Are sure the folder path, which saves to Esri grid format in a folder:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;G:\GIS Data\DMSPOLSRC\Radiance_Calibrated\rescaled\f121996rsc&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;is valid? Does the rescaled folder exists, and what is in it?&amp;nbsp; highly recommend saving to the .tif format because avoids problems related to corrupted "info" folders, filename, and size limitations of Esri grids. You can save to .tif format by simply adding the extension to your path "rescaled/f121996rsc.tif" &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Another issue is your use of a folder&amp;nbsp;has a space in it, I recommend avoiding that especially for raster tool operations.&amp;nbsp;&lt;A href="https://community.esri.com/people/curtvprice/blog/2016/05/07/how-to-name-things-in-arcgis?sr=search&amp;amp;searchId=77846afb-5ef6-4c5a-bfb8-30d504c6f413&amp;amp;searchIndex=0"&gt;https://community.esri.com/people/curtvprice/blog/2016/05/07/how-to-name-things-in-arcgis?sr=search&amp;amp;searchId=77846afb-5ef6-4c5a-bfb8-30d504c6f413&amp;amp;searchIndex=0&lt;/A&gt;‌&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Third suggestion, though I don't think this is your issue, if you&amp;nbsp;are using 10.5.x I suggest installing these two patches.&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en/download/7551" style="color: #2989c5; text-decoration: none;" title="https://support.esri.com/en/download/7551"&gt;ArcGIS 10.5.1 (Desktop, Engine, Server) Spatial Analyst Int and Abs tools Patch&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en/download/7582" style="color: #2989c5; text-decoration: none;" title="https://support.esri.com/en/download/7582"&gt;ArcGIS 10.5.1 (Desktop, Engine, Server) Spatial Analyst Zonal Statistics Tool Patch&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2018 20:56:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272830#M21083</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2018-06-23T20:56:50Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272831#M21084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried out your suggestions. I don’t think the file name and/or folder path was the issue. It failed even with basic locations like "G:/f1996.tif". Toe weed out any confusion about file paths, I invoked the os package and worked with it. As Curtis suggested I also switched to tif. I also cleaned out the rescaled folder.&lt;/P&gt;&lt;P&gt;The outcon command was the problem. It was not&amp;nbsp;doing the required calculations. However,&amp;nbsp; it&amp;nbsp;would do the simpler command that Dan suggested.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;But, the behavior of the Outcon command is bizarre.&lt;/P&gt;&lt;P&gt;It turns out I can get my outcon command to work if it is preceded by the simpler outcon command that Don suggested. Otherwise, it does not work. So my program only works if I define testRaster below and first do the simply outCon routine before performing the one I actually need. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy, numpy, os&lt;/P&gt;&lt;P&gt;from arcpy import env&lt;/P&gt;&lt;P&gt;from arcpy.sa import *&lt;/P&gt;&lt;P&gt;import time&lt;/P&gt;&lt;P&gt;start_time = time.time()&lt;/P&gt;&lt;P&gt;arcpy.CheckOutExtension("Spatial")&lt;/P&gt;&lt;P&gt;env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;env.workspace = "G:/GIS Data/DMSPOLSRC/Radiance_Calibrated"&lt;/P&gt;&lt;P&gt;arcpy.env.scratchWorkspace="G:/GIS Data/scratch"&lt;/P&gt;&lt;P&gt;inws="G:/GIS Data/DMSPOLSRC/Radiance_Calibrated"&lt;/P&gt;&lt;P&gt;outws="G:/GIS Data/DMSPOLSRC/Radiance_Calibrated/rescaled"&lt;/P&gt;&lt;P&gt;#1996&lt;/P&gt;&lt;P&gt;inRaster1 = Raster(os.path.join(inws,"F121996Copy/rad_v4avg_vis.tif"))&lt;/P&gt;&lt;P&gt;print inRaster1&lt;/P&gt;&lt;P&gt;testRaster=os.path.join(outws, "f121996test.tif")&lt;/P&gt;&lt;P&gt;outCon = Con((inRaster1==0), 0 , 1 )&lt;/P&gt;&lt;P&gt;outCon.save(testRaster)&lt;/P&gt;&lt;P&gt;print "Completed", testRaster&lt;/P&gt;&lt;P&gt;outRaster=os.path.join(outws, "f121996rsc.tif")&lt;/P&gt;&lt;P&gt;outCon = Con((inRaster1==0), 0 , 4.336+(0.915*inRaster1))&lt;/P&gt;&lt;P&gt;outCon.save(outRaster)&lt;/P&gt;&lt;P&gt;print "Completed", outRaster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2018 22:31:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272831#M21084</guid>
      <dc:creator>AreendamChanda</dc:creator>
      <dc:date>2018-06-23T22:31:37Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272832#M21085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That really is weird. I'd report this to Esri support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When doing map algebra I like to set the scratch and output workspace to the same folder location. If temporary rasters are created behind the scenes (they are saved as .tif starting at 10.5), then a .save() operation to .tif format only has to rename, not copy, the temp so-called 'in memory' raster. This makes a big difference when your datasets get big, as they do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, the&amp;nbsp;spaces in paths thing with raster data&amp;nbsp;&lt;SPAN style="text-decoration: underline;"&gt;is&lt;/SPAN&gt; real, Scout's honor, although it has become less&amp;nbsp;fatal over time. Dan and I will both attest that spaces in paths&amp;nbsp;seem to work fine, but our students find that their workflows always fail if there are spaces in their paths the&amp;nbsp;week their projects are due! So, we both always cringe when see "C:\GIS Data". If your scratch workspace&amp;nbsp;still&amp;nbsp;had a space in it when you saved to your C drive root, that may have been contributing to your issue. (I suspect your complex map algebra expression is requiring the software to write an intermediate raster to the scratch workspace under the hood, and if the temp raster is created behind the scenes like that first to a path with a space... maybe that's a problem.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is strange though, definitely worth taking it to support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an illustration of how temp rasters work in map algebra under the hood see:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/curtvprice/blog/2017/03/03/temporary-rasters-in-arcpy?sr=search&amp;amp;searchId=9db247f4-562e-4bd0-b4d4-aeafd0735bed&amp;amp;searchIndex=0"&gt;https://community.esri.com/people/curtvprice/blog/2017/03/03/temporary-rasters-in-arcpy?sr=search&amp;amp;searchId=9db247f4-562e-4bd0-b4d4-aeafd0735bed&amp;amp;searchIndex=0&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2018 22:52:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272832#M21085</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2018-06-23T22:52:19Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272833#M21086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. This is &lt;STRONG&gt;really very useful&lt;/STRONG&gt;. I have self-taught ArcGIS and Python over the past year but my knowledge on both the outer and inner workings of folders, directories, relationships between databases is very vague.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jun 2018 17:34:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272833#M21086</guid>
      <dc:creator>AreendamChanda</dc:creator>
      <dc:date>2018-06-24T17:34:43Z</dc:date>
    </item>
    <item>
      <title>Re:  ERROR 999998 when saving a raster after Con</title>
      <link>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272834#M21087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adrian.... and Python 3.x is going to add an extra dimension as well.&lt;/P&gt;&lt;P&gt;For some examples of how things go wrong with paths...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/blogs/dan_patterson/2016/08/14/filenames-and-file-paths-in-python"&gt;/blogs/dan_patterson/2016/08/14/filenames-and-file-paths-in-python&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jun 2018 18:08:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999998-when-saving-a-raster-after-con/m-p/272834#M21087</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-06-24T18:08:57Z</dc:date>
    </item>
  </channel>
</rss>

