<?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 Feature to raster Python very slow in ArcGIS 10 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121357#M9474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've got an ArcGIS 9.3 script that is also to be used in ArcGIS 10 (but not exclusively).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Under ArcGIS 9.3, this script runs quite fast (&amp;lt;1min per raster), but in ArcGIS 10, running time is dramatically longer (&amp;gt;10min per raster). &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is, obviously, not acceptable. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The resulting raster has 7349 columns and 6110 rows.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone tell the reason behind this huge differnce in processing-time (is it because I'm using arcgisscriping instead of arcpy?). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import os, sys, arcgisscripting
gp = arcgisscripting.create(9.3)

inShape = gp.GetParameterAsText(0)
outRas = gp.GetParameterAsText(1)
field = gp.GetParameterAsText(2)
cellSize = gp.GetParameterAsText(3)
snapRaster = gp.getParameter(4)

#Storing old snapping parameter
oldSnap = gp.snapRaster
#Define snap raster 
#define extent
gp.SnapRaster = snapRaster
oldExt = gp.extent
rasDesc = gp.Describe(snapRaster)
newExt = rasDesc.extent
gp.extent = newExt

#Conversion
gp.FeatureToRaster_conversion(inShape, field, outRas, cellSize)
gp.snapRaster = oldSnap
gp.extent = oldExt
del oldSnap, oldExt&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Mar 2011 10:53:39 GMT</pubDate>
    <dc:creator>KoenVolleberg</dc:creator>
    <dc:date>2011-03-28T10:53:39Z</dc:date>
    <item>
      <title>Feature to raster Python very slow in ArcGIS 10</title>
      <link>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121357#M9474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've got an ArcGIS 9.3 script that is also to be used in ArcGIS 10 (but not exclusively).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Under ArcGIS 9.3, this script runs quite fast (&amp;lt;1min per raster), but in ArcGIS 10, running time is dramatically longer (&amp;gt;10min per raster). &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is, obviously, not acceptable. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The resulting raster has 7349 columns and 6110 rows.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone tell the reason behind this huge differnce in processing-time (is it because I'm using arcgisscriping instead of arcpy?). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import os, sys, arcgisscripting
gp = arcgisscripting.create(9.3)

inShape = gp.GetParameterAsText(0)
outRas = gp.GetParameterAsText(1)
field = gp.GetParameterAsText(2)
cellSize = gp.GetParameterAsText(3)
snapRaster = gp.getParameter(4)

#Storing old snapping parameter
oldSnap = gp.snapRaster
#Define snap raster 
#define extent
gp.SnapRaster = snapRaster
oldExt = gp.extent
rasDesc = gp.Describe(snapRaster)
newExt = rasDesc.extent
gp.extent = newExt

#Conversion
gp.FeatureToRaster_conversion(inShape, field, outRas, cellSize)
gp.snapRaster = oldSnap
gp.extent = oldExt
del oldSnap, oldExt&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 10:53:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121357#M9474</guid>
      <dc:creator>KoenVolleberg</dc:creator>
      <dc:date>2011-03-28T10:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: Feature to raster Python very slow in ArcGIS 10</title>
      <link>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121358#M9475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm guessing this is related to your issue, but a while back I reported a bug to ESRI:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;When you set a snaperaster in a Python script, the SA tools all perform significantly slower (compared to if you don't set it).&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The ESRI fellow noted the slowdown, but didn't seem to understand why this was a big deal, and wanted to close the "incident" right away ( incident #807205 BTW)... Maybe they get incentive pay for "number of closed incidents"? Hmm...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, in ancient times (pre v9.2), before the gp.snapraster function worked (at all), I wrote a function that adjusted a given gp.extent to the cell alignment of a given raster (see code below). Basically this is what gp.snapraster is doing behind the scenes... Upon finding the aforementioned bug in v9.3, I resurrected my code, and happily use it to this day. Probably more verbose than necessary, but it works great... Might require some small re-writes for v10.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;def snapExtentToRaster(inputExtent, snapRaster):
&amp;nbsp;&amp;nbsp;&amp;nbsp; "Returns a xMin, yMin, xMax, yMax extent snapped to the cell allignment of a raster"
&amp;nbsp;&amp;nbsp;&amp;nbsp; xMinInput = float(inputExtent.split(" ")[0])
&amp;nbsp;&amp;nbsp;&amp;nbsp; yMinInput = float(inputExtent.split(" ")[1])
&amp;nbsp;&amp;nbsp;&amp;nbsp; xMaxInput = float(inputExtent.split(" ")[2])
&amp;nbsp;&amp;nbsp;&amp;nbsp; yMaxInput = float(inputExtent.split(" ")[3])
&amp;nbsp;&amp;nbsp;&amp;nbsp; dscSnapRaster = gp.describe(snapRaster)
&amp;nbsp;&amp;nbsp;&amp;nbsp; cellSize = float(dscSnapRaster.meancellheight)
&amp;nbsp;&amp;nbsp;&amp;nbsp; xMinSnap = float(dscSnapRaster.extent.xmin)
&amp;nbsp;&amp;nbsp;&amp;nbsp; yMinSnap = float(dscSnapRaster.extent.ymin)
&amp;nbsp;&amp;nbsp;&amp;nbsp; xMaxSnap = float(dscSnapRaster.extent.xmax)
&amp;nbsp;&amp;nbsp;&amp;nbsp; yMaxSnap = float(dscSnapRaster.extent.ymax)
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Calculates a modified xMinInput
&amp;nbsp;&amp;nbsp;&amp;nbsp; if xMinSnap &amp;lt; xMinInput:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(xMinInput - xMinSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMinOutput = xMinSnap + divmod(abs(xMinInput - xMinSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMinOutput = xMinSnap + cellSize + divmod(abs(xMinInput - xMinSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(xMinInput - xMinSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMinOutput = xMinSnap - divmod(abs(xMinInput - xMinSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMinOutput = xMinSnap - cellSize - divmod(abs(xMinInput - xMinSnap), cellSize)[0] * cellSize&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Calculates a modified yMinInput
&amp;nbsp;&amp;nbsp;&amp;nbsp; if yMinSnap &amp;lt; yMinInput:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(yMinInput - yMinSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMinOutput = yMinSnap + divmod(abs(yMinInput - yMinSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMinOutput = yMinSnap + cellSize + divmod(abs(yMinInput - yMinSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(yMinInput - yMinSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMinOutput = yMinSnap - divmod(abs(yMinInput - yMinSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMinOutput = yMinSnap - cellSize - divmod(abs(yMinInput - yMinSnap), cellSize)[0] * cellSize&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Calculates a modified xMaxInput
&amp;nbsp;&amp;nbsp;&amp;nbsp; if xMaxSnap &amp;lt; xMaxInput:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(xMaxInput - xMaxSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMaxOutput = xMaxSnap + divmod(abs(xMaxInput - xMaxSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMaxOutput = xMaxSnap + cellSize + divmod(abs(xMaxInput - xMaxSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(xMaxInput - xMaxSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMaxOutput = xMaxSnap - divmod(abs(xMaxInput - xMaxSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xMaxOutput = xMaxSnap - cellSize - divmod(abs(xMaxInput - xMaxSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Calculates a modified yMaxInput
&amp;nbsp;&amp;nbsp;&amp;nbsp; if yMaxSnap &amp;lt; yMaxInput:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(yMaxInput - yMaxSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMaxOutput = yMaxSnap + divmod(abs(yMaxInput - yMaxSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMaxOutput = yMaxSnap + cellSize + divmod(abs(yMaxInput - yMaxSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if divmod(abs(yMaxInput - yMaxSnap), cellSize)[1] / cellSize &amp;lt; .5:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMaxOutput = yMaxSnap - divmod(abs(yMaxInput - yMaxSnap), cellSize)[0] * cellSize
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yMaxOutput = yMaxSnap - cellSize - divmod(abs(yMaxInput - yMaxSnap), cellSize)[0] * cellSize&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Returns the entire modified extent
&amp;nbsp;&amp;nbsp;&amp;nbsp; return str(xMinOutput) + " " + str(yMinOutput) + " " + str(xMaxOutput) + " " + str(yMaxOutput)


#Example of use.... adjuest the extent of oesfBufferFC so it aligns with gnnReadGrd 
oesfBufferFC = fgdbPath + "\\oesf_buffer"
gnnReadGrd = r"\\dnrutoly05\d$\csny490\gnn_20100303\mr200_sppsz_2006\gnn_20100303"
gp.extent = oesfBufferFC
gp.extent = snapExtentToRaster(gp.extent, gnnReadGrd)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:01:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121358#M9475</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2021-12-11T07:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Feature to raster Python very slow in ArcGIS 10</title>
      <link>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121359#M9476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Chris,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for the suggestion. I implemented it (indeed I had to modify a bit), but without success. I'm going to try if it has to do with arcgisscripting instead of arcpy in ArcGIS 10.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If I find a solution, I'll post it here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT: arcpy does not work either. Seems like something in FeaturetoRaster coversion. Maybe ESRI has a solution?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 07:13:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121359#M9476</guid>
      <dc:creator>KoenVolleberg</dc:creator>
      <dc:date>2011-03-29T07:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Feature to raster Python very slow in ArcGIS 10</title>
      <link>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121360#M9477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is it faster if you comment out the gp.snapraster line?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, I notice you are setting the extent of the new raster to be the same as the snapRaster... Why not set the gp.extent = to that of the inputShapefile and then set gp.snapraster = snapRaster? By setting the gp.extent = the extent of snapRaster, you don't need to then set gp.snapraster = snapRaster.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could it be that the extent of the snapRaster is much more expansive than the extent of the inputShapefile (and therefore has to take a lot of time to produce a bunch of extra NODATA cells on the periphery)?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 15:23:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121360#M9477</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-03-29T15:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Feature to raster Python very slow in ArcGIS 10</title>
      <link>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121361#M9478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In my experience, when migrating scripts from the arcgisscripting module to arcpy, a lot of issues can come up. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When running an arcgisscripting module script in an Arc10 environment, there was a noticeable loss of performance in terms of speed of processing. Compared to running the same scripts under an Arc9.3 environment.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When testing using both arcgisscripting and arcpy modules in an Arc10 environment in the same script, there were severe performance impacts and instability.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Conclusion I found: It was be easier to write a separate script for Arc10 and Arc9.x than to try to make the same script compatible under both environments.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 16:02:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121361#M9478</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2011-03-29T16:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Feature to raster Python very slow in ArcGIS 10</title>
      <link>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121362#M9479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;True - My forays into v10 arcpy land have not been very encouraging.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcGIS v9.3.1 remains my geoprocessing workhorse...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 16:46:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/feature-to-raster-python-very-slow-in-arcgis-10/m-p/121362#M9479</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-03-29T16:46:52Z</dc:date>
    </item>
  </channel>
</rss>

