<?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: Topo to raster / Cliff function problem in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053157#M11260</link>
    <description>&lt;P&gt;Dear Jayanta, spline works like a rocket..... a very exact interpolator by the way. Not sure how it deviates from topo to raster but this seems very good... still I can't compare it with topo to raster... Cheers Freek&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fsbusschers_1-1619788260866.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/12261iB4EFB9FAE456873F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fsbusschers_1-1619788260866.png" alt="fsbusschers_1-1619788260866.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Apr 2021 13:11:24 GMT</pubDate>
    <dc:creator>fsbusschers</dc:creator>
    <dc:date>2021-04-30T13:11:24Z</dc:date>
    <item>
      <title>Topo to raster / Cliff function problem</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053113#M11255</link>
      <description>&lt;LI-SPOILER&gt;&amp;nbsp;&lt;/LI-SPOILER&gt;&lt;P&gt;Dear members,&lt;/P&gt;&lt;P&gt;I'm using topo to raster to create a base of a geological surface in combination with faults. I thought this would be doable using the Cliff option in topo to raster.&lt;/P&gt;&lt;P&gt;But:&lt;/P&gt;&lt;P&gt;* If I run topo to raster using a sinlge faultline (see result_polyline2_single_fault.pdf) it works.&lt;/P&gt;&lt;P&gt;* If I run topo to raster using a shape with multiple faultlines (see result_polyline3_multple_fault.pdf) the faults are not taken into account (it just runs the ''normal topo to raster function).&lt;/P&gt;&lt;P&gt;The shapes are the same. Orientations are ok. Changing id's does not help, dissolving the multiple faults into one id also does not.&lt;/P&gt;&lt;P&gt;Is it possible anyway to run multiple cliffs at once?&lt;/P&gt;&lt;P&gt;I'm running topo to raster via pyhton 2.7 and arcmap 1.6 (see below).&lt;/P&gt;&lt;P&gt;Can anyone help me out?&lt;/P&gt;&lt;P&gt;Cheers, Freek, Geological Survey of the Netherlands&amp;nbsp; !&lt;/P&gt;&lt;P&gt;p.s.: input datasets are gven in the attachment (file with the single fault, file with the multiple faults and the input borehole data from which I use the field "bottom")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CODE:&lt;/P&gt;&lt;P&gt;#---------------------------------------------------------------------------------------------------&lt;BR /&gt;# ArcGIS Geoprocessing instellen&lt;BR /&gt;#---------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;import sys, string, os, time, arcpy&lt;BR /&gt;from arcpy.sa import *&lt;BR /&gt;import ReadIniFile&lt;/P&gt;&lt;P&gt;#---------------------------------------------------------------------------------------------------&lt;BR /&gt;# ArcGIS overwrite aanzetten&lt;BR /&gt;#---------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;arcpy.env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;# Check out the ArcGIS Spatial Analyst extension license&lt;BR /&gt;arcpy.CheckOutExtension("Spatial")&lt;/P&gt;&lt;P&gt;#-------------------------------------------------------------------------------------&lt;BR /&gt;# Ini-file inlezen&lt;BR /&gt;#-------------------------------------------------------------------------------------&lt;BR /&gt;print "Ini-file lezen ..."&lt;BR /&gt;IniFile = ReadIniFile.LoadConfig("verrasteren.ini")&lt;/P&gt;&lt;P&gt;# Gebiedsbegrenzing&lt;BR /&gt;xmin = int(IniFile.get("extent.xmin"))&lt;BR /&gt;xmax = int(IniFile.get("extent.xmax"))&lt;BR /&gt;ymin = int(IniFile.get("extent.ymin"))&lt;BR /&gt;ymax = int(IniFile.get("extent.ymax"))&lt;/P&gt;&lt;P&gt;#---------------------------------------------------------------------------------------------------&lt;BR /&gt;# Environment settings&lt;BR /&gt;#---------------------------------------------------------------------------------------------------&lt;BR /&gt;## General settings&lt;BR /&gt;print "Environment settings ..."&lt;BR /&gt;arcpy.Workspace = IniFile.get("workspace.directory")&lt;BR /&gt;arcpy.ScratchWorkspace = IniFile.get("scratchworkspace.directory")&lt;/P&gt;&lt;P&gt;# Extent goed instellen : left, bottom, right, top (!!!)&lt;BR /&gt;extent_string = str(xmin) + " " + str(ymin) + " " + str(xmax) + " " + str(ymax)&lt;BR /&gt;arcpy.env.extent = extent_string&lt;/P&gt;&lt;P&gt;## Raster Analysis settings&lt;BR /&gt;arcpy.env.cellSize = int(IniFile.get("cellsize.cellsize"))&lt;/P&gt;&lt;P&gt;print "-----------------------------------------------------/n"&lt;BR /&gt;print "Settings"&lt;BR /&gt;print "Workspace : " + arcpy.Workspace&lt;BR /&gt;print "ScratchWorkspace : " + arcpy.ScratchWorkspace&lt;BR /&gt;print "Cellsize : " + arcpy.env.cellSize&lt;BR /&gt;print "-----------------------------------------------------/n"&lt;/P&gt;&lt;P&gt;# Output&lt;BR /&gt;out_raster = "c:/Temp/be_base11"&lt;/P&gt;&lt;P&gt;# Input coverages&lt;BR /&gt;pointCov1 = "c:/Temp/Be_doorboord.shp "&lt;BR /&gt;attributeCov1 = "bottom "&lt;BR /&gt;typeCov1 = "PointElevation "&lt;/P&gt;&lt;P&gt;# breuken!!!!&lt;BR /&gt;be_breuk_utm = "c:/Temp/polyline2.shp "&lt;BR /&gt;&lt;BR /&gt;outTTR = TopoToRaster([TopoPointElevation([[pointCov1, attributeCov1]]),&lt;BR /&gt;&lt;STRONG&gt;TopoCliff([be_breuk_utm])],&lt;/STRONG&gt;&lt;BR /&gt;"250",&lt;BR /&gt;"682000 5685000 715000 5710000",&lt;BR /&gt;"20",&lt;BR /&gt;"#",&lt;BR /&gt;"#",&lt;BR /&gt;"NO_ENFORCE",&lt;BR /&gt;"SPOT",&lt;BR /&gt;"40",&lt;BR /&gt;"",&lt;BR /&gt;"1",&lt;BR /&gt;"0",&lt;BR /&gt;"#",&lt;BR /&gt;"#",&lt;BR /&gt;"#",&lt;BR /&gt;"#",&lt;BR /&gt;"#",&lt;BR /&gt;"#")&lt;BR /&gt;outTTR.save(out_raster)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 11:14:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053113#M11255</guid>
      <dc:creator>fsbusschers</dc:creator>
      <dc:date>2021-04-30T11:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Topo to raster / Cliff function problem</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053117#M11256</link>
      <description>&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/3d-analyst/topo-to-raster.htm" target="_blank"&gt;Topo to Raster (3D Analyst)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;out_stream_cliff_error_feature&amp;nbsp;&lt;/P&gt;&lt;P&gt;out_contour_error_feature&lt;/P&gt;&lt;P&gt;Did you try to run it with those optional parameters?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 11:37:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053117#M11256</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-04-30T11:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Topo to raster / Cliff function problem</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053126#M11257</link>
      <description>&lt;P&gt;Could you test if &lt;A href="https://desktop.arcgis.com/en/arcmap/10.6/tools/spatial-analyst-toolbox/spline-with-barriers.htm" target="_self"&gt;&lt;STRONG&gt;Spline with Barriers&lt;/STRONG&gt;&lt;/A&gt; gives you the desired result?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 12:09:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053126#M11257</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-04-30T12:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Topo to raster / Cliff function problem</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053135#M11258</link>
      <description>&lt;P&gt;Dan, I (now &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ) did (see below). About in the middle it says: "WINDOWED CLIFF SIZE 7 EXCEEDS MAXIMUM 35". You have any idea what that means? Cheers Freek!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ANUDEM VERSION 5.3.0 (32BIT) 19/06/2011&lt;BR /&gt;COPYRIGHT AUSTRALIAN NATIONAL UNIVERSITY&lt;/P&gt;&lt;P&gt;=== TOPOtoRASTER DIAGNOSTICS ===&lt;/P&gt;&lt;P&gt;--- PARAMETER PROCESSING ---&lt;/P&gt;&lt;P&gt;DRAINAGE OPTION (0,1 OR 2): 0&lt;BR /&gt;0 NO DRAINAGE ENFORCEMENT&lt;BR /&gt;1 DRAINAGE ENFORCEMENT&lt;BR /&gt;2 DRAINAGE ENFORCEMENT WITH SINK DIAGNOSTICS&lt;/P&gt;&lt;P&gt;CONTOUR DATA OPTION (0 OR 1): 0&lt;BR /&gt;0 - ELEVATION DATA CONSISTS MAINLY OF SPOT HEIGHTS&lt;BR /&gt;1 - ELEVATION DATA CONSISTS MAINLY OF CONTOURS&lt;/P&gt;&lt;P&gt;NON-NEGATIVE RMS FACTOR: 1.00000&lt;BR /&gt;VERTICAL STANDARD ERROR: 0.00000&lt;BR /&gt;CLIFF ERROR: 0.20000&lt;BR /&gt;STREAM ERROR: 0.20000&lt;/P&gt;&lt;P&gt;POTENTIAL (0.0-1.0), PROFILE CURV (0.0-0.9):&lt;BR /&gt;0.0 - CONTOUR DATA 0.0 - DEFAULT&lt;BR /&gt;0.5 - POINT DATA 0.5 - WEAK PROF CURV&lt;BR /&gt;1.0 - NOT RECOMMENDED 0.8 - STRONG PROF CURV&lt;BR /&gt;0.500 0.000&lt;/P&gt;&lt;P&gt;ELEVATION TOLERANCE (HALF DATA CONTOUR INTERVAL):&lt;BR /&gt;0.000 200.000&lt;/P&gt;&lt;P&gt;MAXIMUM NO. OF ITERATIONS (NORMALLY 20): 40&lt;/P&gt;&lt;P&gt;ELEVATION LIMITS: -34.14000 36.84000&lt;/P&gt;&lt;P&gt;X (LONGITUDE) LIMITS: 682125.00000000 714875.00000000&lt;/P&gt;&lt;P&gt;Y (LATITUDE) LIMITS: 5685125.0000000 5709875.0000000&lt;/P&gt;&lt;P&gt;RASTER CELL SIZE: 250.00000000000&lt;BR /&gt;NUMBER OF ROWS IN OUTPUT RASTER = 100&lt;BR /&gt;NUMBER OF COLS IN OUTPUT RASTER = 132&lt;/P&gt;&lt;P&gt;RASTER MARGIN (NON-NEGATIVE): 5000.0000000000&lt;/P&gt;&lt;P&gt;NO. OF ROWS IN WORKING GRID = 140&lt;BR /&gt;NO. OF COLS IN WORKING GRID = 172&lt;/P&gt;&lt;P&gt;NUMBER OF DATA FILES: 2&lt;BR /&gt;TYPE 1 = POINT DATA FILE&lt;BR /&gt;TYPE 2 = SINK POINT FILE&lt;BR /&gt;TYPE 3 = STREAM LINE FILE&lt;BR /&gt;TYPE 4 = COAST POLYGON FILE&lt;BR /&gt;TYPE 5 = CONTOUR FILE&lt;BR /&gt;TYPE 6 = LAKE BOUNDARY FILE&lt;BR /&gt;TYPE 7 = CLIFF FILE&lt;BR /&gt;TYPE 8 = DATA MASK FILE&lt;/P&gt;&lt;P&gt;DATA FILE TYPES&lt;BR /&gt;---------------&lt;BR /&gt;1= POINT&lt;BR /&gt;2= CONTOUR&lt;BR /&gt;3= SINK&lt;BR /&gt;4= STREAM&lt;BR /&gt;5= COAST&lt;BR /&gt;6= LAKE&lt;BR /&gt;7= CLIFF&lt;BR /&gt;8= DATAMASK&lt;/P&gt;&lt;P&gt;INPUT FEATURE DATA 1:&lt;BR /&gt;NAME: C:\TEMP\BE_DOORBOORD&lt;BR /&gt;TYPE: POINT&lt;BR /&gt;ELEVATION ITEM NAME: bottom&lt;/P&gt;&lt;P&gt;INPUT FEATURE DATA 2:&lt;BR /&gt;NAME: C:\TEMP\POLYLINE3&lt;BR /&gt;TYPE: CLIFF&lt;/P&gt;&lt;P&gt;OUTPUT ELEVATION RASTER NAME: C:\TEMP\TOPOTOR_BE_DOOR1.TIF&lt;/P&gt;&lt;P&gt;INPUT ELEVATION POINT DATA 1: C:\TEMP\BE_DOORBOORD&lt;BR /&gt;NUMBER OF ELEVATION DATA POINTS = 342&lt;BR /&gt;NUMBER OF POINTS WITHIN LIMITS = 342&lt;BR /&gt;NUMBER OF POINTS ACCEPTED = 342&lt;/P&gt;&lt;P&gt;INPUT CLIFF LINE DATA 2: C:\TEMP\POLYLINE3&lt;/P&gt;&lt;P&gt;WINDOWED CLIFF SIZE 7 EXCEEDS MAXIMUM 35&lt;BR /&gt;NUMBER OF CONTOUR LINE POINTS = 342&lt;BR /&gt;NUMBER OF POINTS WITHIN LIMITS = 342&lt;BR /&gt;NUMBER OF POINTS ACCEPTED = 342&lt;/P&gt;&lt;P&gt;NUMBER OF RASTER RESOLUTIONS = 5&lt;/P&gt;&lt;P&gt;RESOLUTION 1&lt;BR /&gt;SPACING = 0.4000E+04 NCOLS = 11 NROWS = 9&lt;BR /&gt;RSETIW K = 1 DFAC = 6.84 EPS = 0.0000&lt;/P&gt;&lt;P&gt;NUMBER OF DISTINCT DATA POINTS = 50&lt;BR /&gt;RHO = 0.195E-01 RMS1 = 0.100E+01 RMS2 = 0.248E+01 SLOPE = 0.00 %&lt;BR /&gt;NUMBER OF DATA POINT SINKS = 2&lt;BR /&gt;NUMBER OF NON-DATA POINT SINKS = 0&lt;BR /&gt;TOTAL NUMBER OF SINKS = 2&lt;/P&gt;&lt;P&gt;RESOLUTION 2&lt;BR /&gt;SPACING = 0.2000E+04 NCOLS = 22 NROWS = 18&lt;BR /&gt;RSETIW K = 2 DFAC = 2.31 EPS = 0.0000&lt;/P&gt;&lt;P&gt;NUMBER OF DISTINCT DATA POINTS = 148&lt;BR /&gt;RHO = 0.159E-01 RMS1 = 0.100E+01 RMS2 = 0.232E+01 SLOPE = 0.00 %&lt;BR /&gt;NUMBER OF DATA POINT SINKS = 8&lt;BR /&gt;NUMBER OF NON-DATA POINT SINKS = 2&lt;BR /&gt;TOTAL NUMBER OF SINKS = 10&lt;/P&gt;&lt;P&gt;RESOLUTION 3&lt;BR /&gt;SPACING = 0.1000E+04 NCOLS = 43 NROWS = 35&lt;BR /&gt;RSETIW K = 3 DFAC = 1.28 EPS = 0.0000&lt;/P&gt;&lt;P&gt;NUMBER OF DISTINCT DATA POINTS = 268&lt;BR /&gt;RHO = 0.228E-01 RMS1 = 0.100E+01 RMS2 = 0.214E+01 SLOPE = 0.00 %&lt;BR /&gt;NUMBER OF DATA POINT SINKS = 29&lt;BR /&gt;NUMBER OF NON-DATA POINT SINKS = 4&lt;BR /&gt;TOTAL NUMBER OF SINKS = 33&lt;/P&gt;&lt;P&gt;RESOLUTION 4&lt;BR /&gt;SPACING = 0.5000E+03 NCOLS = 86 NROWS = 70&lt;BR /&gt;RSETIW K = 4 DFAC = 1.08 EPS = 0.0000&lt;/P&gt;&lt;P&gt;NUMBER OF DISTINCT DATA POINTS = 316&lt;BR /&gt;RHO = 0.520E-01 RMS1 = 0.100E+01 RMS2 = 0.138E+01 SLOPE = 0.00 %&lt;BR /&gt;NUMBER OF DATA POINT SINKS = 43&lt;BR /&gt;NUMBER OF NON-DATA POINT SINKS = 8&lt;BR /&gt;TOTAL NUMBER OF SINKS = 51&lt;/P&gt;&lt;P&gt;RESOLUTION 5&lt;BR /&gt;SPACING = 0.2500E+03 NCOLS = 172 NROWS = 140&lt;BR /&gt;RSETIW K = 5 DFAC = 1.03 EPS = 0.0000&lt;/P&gt;&lt;P&gt;NUMBER OF DISTINCT DATA POINTS = 331&lt;BR /&gt;RHO = 0.118E+00 RMS1 = 0.100E+01 RMS2 = 0.102E+01 SLOPE = 0.00 %&lt;BR /&gt;NUMBER OF DATA POINT SINKS = 66&lt;BR /&gt;NUMBER OF NON-DATA POINT SINKS = 11&lt;BR /&gt;TOTAL NUMBER OF SINKS = 77&lt;/P&gt;&lt;P&gt;NUMBER OF SPURIOUS DATA POINT SINKS = 64&lt;BR /&gt;NUMBER OF SPURIOUS NON-DATA POINT SINKS = 9&lt;BR /&gt;TOTAL NUMBER OF REMAINING SINKS = 73&lt;/P&gt;&lt;P&gt;-----------------------------------------&lt;BR /&gt;INPUT DATA SUMMARY&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;ELEVATION DATA POINTS 331&lt;BR /&gt;SINK DATA POINTS 0&lt;BR /&gt;STREAM LINES 0&lt;BR /&gt;DISTRIBUTARIES 0&lt;BR /&gt;CLIFFS ON STREAMS 0&lt;BR /&gt;COAST POLYGONS 0&lt;BR /&gt;ELEVATION CONTOURS 0&lt;BR /&gt;MISSING ELEVATION CONTOURS 0&lt;BR /&gt;LAKES 0&lt;BR /&gt;CLIFF LINES 1&lt;BR /&gt;DATA MASK POLYGONS 0&lt;/P&gt;&lt;P&gt;-----------------------------------------&lt;BR /&gt;SUMMARY STATISTICS AND DATA DIAGNOSTICS&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;GRID SPACING 250.000000&lt;BR /&gt;HORIZONTAL ERROR FACTOR 1.000&lt;BR /&gt;VERTICAL STANDARD ERROR 0.000&lt;BR /&gt;POTENTIAL ROUGHNESS PENALTY 0.500&lt;BR /&gt;PROFILE CURVATURE PENALTY 0.000&lt;BR /&gt;REMAINING SPURIOUS SINKS 73&lt;BR /&gt;DRAINAGE ENFORCEMENTS 0&lt;BR /&gt;LARGE RESIDUALS 9&lt;BR /&gt;FLAT STREAM SEGMENTS 0&lt;BR /&gt;CIRCULAR STREAM ERRORS 0&lt;BR /&gt;CLIFF HEIGHT ERRORS 6&lt;BR /&gt;COAST POLYGON DATA ERRORS 0&lt;BR /&gt;CONTOUR DATA ERRORS 0&lt;BR /&gt;LAKE POLYGON ERRORS 0&lt;BR /&gt;LAKE HEIGHT REVERSES 0&lt;BR /&gt;MULTIPLE DOWNSTREAM LAKES 0&lt;BR /&gt;DATA MASK POLYGON ERRORS 0&lt;BR /&gt;-----------------------------------------&lt;/P&gt;&lt;P&gt;=== END OF DIAGNOSTICS ===&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 12:32:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053135#M11258</guid>
      <dc:creator>fsbusschers</dc:creator>
      <dc:date>2021-04-30T12:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Topo to raster / Cliff function problem</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053152#M11259</link>
      <description>&lt;P&gt;Can't find anything in the help documentation, but since you said you had 7 cliffs but there are CLIFF HEIGHT ERRORS 6 my guess would be ...&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 12:59:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053152#M11259</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-04-30T12:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Topo to raster / Cliff function problem</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053157#M11260</link>
      <description>&lt;P&gt;Dear Jayanta, spline works like a rocket..... a very exact interpolator by the way. Not sure how it deviates from topo to raster but this seems very good... still I can't compare it with topo to raster... Cheers Freek&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fsbusschers_1-1619788260866.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/12261iB4EFB9FAE456873F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fsbusschers_1-1619788260866.png" alt="fsbusschers_1-1619788260866.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 13:11:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/topo-to-raster-cliff-function-problem/m-p/1053157#M11260</guid>
      <dc:creator>fsbusschers</dc:creator>
      <dc:date>2021-04-30T13:11:24Z</dc:date>
    </item>
  </channel>
</rss>

