<?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: Z-Coordinate Interpolation in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575360#M19007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Stefan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is your input feature class Z-enabled?&amp;nbsp; You can check by opening the attribute table.&amp;nbsp; The value for the Shape field should be 'PointZ'.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Dec 2013 10:16:27 GMT</pubDate>
    <dc:creator>JakeSkinner</dc:creator>
    <dc:date>2013-12-02T10:16:27Z</dc:date>
    <item>
      <title>Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575353#M19000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey there!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've imported the surveypoints from an ascii file (add xy data -&amp;gt; export as shape -&amp;gt; import) and got the points now with x y and z coordinates in my map as shape-file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How can i interpolate z-coordinates to new points now? I've selected the field "contains z coordinates" in the feature class?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 07:36:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575353#M19000</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-11-19T07:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575354#M19001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can run the following python script to update the Z value of each point:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
env.overwriteOutput = 1

shp = r"C:\data\pointsZ.shp"

with arcpy.da.SearchCursor(shp, ["Z"]) as cursor:
&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vertexElevation = row[0]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management(shp, "pts_lyr", "Elevation = " + str(vertexElevation))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Adjust3DZ_management("pts_lyr", "NO_REVERSE", vertexElevation)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will just need to update the path for the 'shp' variable to your shapefile and change the field name ('Z') in the arcpy.da.SearchCursor to the elevation field name.&amp;nbsp; The code iterates through each point and updates the Z value based on the elevation field.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:46:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575354#M19001</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-12T00:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575355#M19002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Seems like a very good solution to my problem but is this also possible if the shape is within a .mbd database?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;tried it with "c:\data\mydb.mdb\z.shp" but it doesnt work. Do you have an idea how i can run this script for my data?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Nov 2013 11:08:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575355#M19002</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-11-20T11:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575356#M19003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, you will just need to change the 'shp' variable to the path of your feature class in the MDB.&amp;nbsp; Ex:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;shp = r"c:\data\mydb.mdb\&amp;lt;feature class name&amp;gt;"&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will not want to end the feature class name with a .shp since it is not a shapefile.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Nov 2013 11:19:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575356#M19003</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2013-11-20T11:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575357#M19004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey, I've tried your python code for my file but there were the following error&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy
... from arcpy import env
... env.overwriteOutput = 1
... 
... shp = r"S:\Public\Projekte\2011\11420\WVA Hochneukirchen\wasser.mdb\LK\WaEinbauten"
... 
... with arcpy.da.SearchCursor(shp, ["GelaendeH"]) as cursor:
...&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vertexElevation = row[0]
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management(shp, "pts_lyr", "Elevation = " + str(vertexElevation))
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Adjust3DZ_management("pts_lyr", "NO_REVERSE", vertexElevation)
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
Runtime error&amp;nbsp; Traceback (most recent call last):&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 11, in &amp;lt;module&amp;gt;&amp;nbsp;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\management.py", line 2101, in Adjust3DZ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e ExecuteError: ERROR 000204: Fehler beim Erstellen des Eingabe-Feature-Cursors Fehler beim Ausführen von (Adjust3DZ).&amp;nbsp; 
&amp;gt;&amp;gt;&amp;gt; &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which means that the Input-Feature-Cursor could not be created, and the Adjust3DZ could not be run (I'm running the german version of ArcGIS)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've updated the path to my feature-class (wasser.mdb\LK\WaEinbauten) as well the elevation field (GelaendeH).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:46:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575357#M19004</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2021-12-12T00:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575358#M19005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I guess, its no good idea to change a shp-file within a searchcursor using this shp-file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe you should copy the shp-file and use the copy in the cursor:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
shp = r"S:\Public\Projekte\2011\11420\WVA Hochneukirchen\wasser.mdb\LK\WaEinbauten"
shp_copy = r"S:\Public\Projekte\2011\11420\WVA Hochneukirchen\wasser.mdb\LK\WaEinbauten_copy"

arcpy.Copy_management(shp , shp_copy) 

with arcpy.da.SearchCursor(shp_copy, ["GelaendeH"]) as cursor:
...
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:46:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575358#M19005</guid>
      <dc:creator>FabianBlau</dc:creator>
      <dc:date>2021-12-12T00:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575359#M19006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You're probably right that this is not a good idea, but the (same) error is still there &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;used code now:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
... from arcpy import env
... env.overwriteOutput = 1
...&amp;nbsp; 
... shp = r"S:\Public\Projekte\2011\11420\WVA Hochneukirchen\wasser.mdb\LK\WaEinbauten"
... shp_copy = r"S:\Public\Projekte\2011\11420\WVA Hochneukirchen\wasser.mdb\LK\WaEinbauten_copy"
... 
... arcpy.Copy_management(shp, shp_copy) 
... 
... with arcpy.da.SearchCursor(shp_copy, ["GelaendeH"]) as cursor:
...&amp;nbsp; for row in cursor:
...&amp;nbsp;&amp;nbsp; vertexElevation = row[0]
...&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management(shp, "pts_lyr", "Elevation = " + str(vertexElevation))
...&amp;nbsp;&amp;nbsp; arcpy.Adjust3DZ_management("pts_lyr", "NO_REVERSE", vertexElevation)
... 
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Runtime error&amp;nbsp; Traceback (most recent call last):&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 14, in &amp;lt;module&amp;gt;&amp;nbsp;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\management.py", line 2101, in Adjust3DZ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e ExecuteError: ERROR 000204: Fehler beim Erstellen des Eingabe-Feature-Cursors Fehler beim Ausführen von (Adjust3DZ).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tried it also with "shp_copy" in line 12 instead of "shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help so far!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:46:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575359#M19006</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2021-12-12T00:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575360#M19007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Stefan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is your input feature class Z-enabled?&amp;nbsp; You can check by opening the attribute table.&amp;nbsp; The value for the Shape field should be 'PointZ'.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Dec 2013 10:16:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575360#M19007</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2013-12-02T10:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575361#M19008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, they are Point Z and in the Feature Class Options I have selected the option "Contains Z-Values"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 05:05:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575361#M19008</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-12-04T05:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575362#M19009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you upload a sample of your data?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 09:33:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575362#M19009</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2013-12-04T09:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575363#M19010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've uploaded a sample of my mdb file to uploaded.to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://ul.to/0dynvo2x"&gt;http://ul.to/0dynvo2x&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;password is "esri"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried it now to locate the copy of the feature class within and outside the feature dataset but it didn't word for me. Thanks for your patience &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 13:30:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575363#M19010</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-12-04T13:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575364#M19011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Stefan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I could not access this database.&amp;nbsp; It seems to be corrupted.&amp;nbsp; Can you copy the feature class to a File Geodatabase and send that?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 15:47:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575364#M19011</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2013-12-04T15:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575365#M19012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, it worked for me but here is the copied gdb file&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Dec 2013 04:38:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575365#M19012</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-12-05T04:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575366#M19013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Looks like the issue was with the NULL values in your field, and the query in the MakeFeatureLayer function was slightly off.&amp;nbsp; Try the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;shp = "WaEinbauten"
 
with arcpy.da.SearchCursor(shp, ["GelaendeH"]) as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not vertexElevation &amp;gt; 0:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vertexElevation = 0
&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; vertexElevation = row[0]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management(shp, "pts_lyr", "GelaendeH = " + str(vertexElevation))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Adjust3DZ_management("pts_lyr", "NO_REVERSE", vertexElevation)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:46:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575366#M19013</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-12T00:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575367#M19014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The script now works (running for a while), but don't update any z-values... &amp;lt;null&amp;gt; values are still in the row.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This script will set the &amp;lt;null&amp;gt; values only to "0" right? Or does it interpolate the other values? I dont want to update the given z-values (because they were taken by a survey) but only the &amp;lt;null&amp;gt; values to be interpolated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 06:35:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575367#M19014</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-12-11T06:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575368#M19015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;should it not be something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; for row in cursor:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not vertexElevation &amp;gt; 0:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vertexElevation = something with interpolate z-values of the next 10 neighbours or all points in the area of 10 metres (thats the question)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;without an else i would say because i want the rows with values to stay the same, but only the &amp;lt;null&amp;gt; values to be interpolated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;any further ideas? thank you, for you informations so long&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 11:29:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575368#M19015</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-12-18T11:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575369#M19016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Stefan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I misunderstood what you were looking to accomplish before.&amp;nbsp; You are looking to populate the elevation values that are NULL by interpolating the elevation values from the surrounding points.&amp;nbsp; Is that correct?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can do this by performing the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; Select all elevation values that are not NULL (i.e. NOT GelaendeH IS NULL)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; Run the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.2/index.html#//009z0000006m000000" rel="nofollow" target="_blank"&gt;IDW&lt;/A&gt;&lt;SPAN&gt; tool on the selection.&amp;nbsp; Before executing the tool, click on the Environments button &amp;gt; Processing Extent &amp;gt; set the Extent to the point feature class&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.&amp;nbsp; Run the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00q90000006m000000" rel="nofollow" target="_blank"&gt;Interpolate Shape&lt;/A&gt;&lt;SPAN&gt; tool on the point feature class using the output raster from the IDW tool.&amp;nbsp; A new feature class will be created&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4.&amp;nbsp; With the new feature class, select all elevation values that are NULL (i.e. GelaendeH IS NULL)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5.&amp;nbsp; Open the attribute table &amp;gt; Right-click on the GelaendeH field &amp;gt; Calculate Geometry &amp;gt; Z coordinate of point&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 12:45:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575369#M19016</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2013-12-18T12:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575370#M19017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey JSkinn3!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Seems really good to me, I'll try this after christmas in the office, thank you so far!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 17:21:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575370#M19017</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2013-12-18T17:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Z-Coordinate Interpolation</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575371#M19018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okay, this is now exactly what I was looking for!!!! Thank you very much for your help and patience!!! Saved me a lot of time and work!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2014 06:11:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/z-coordinate-interpolation/m-p/575371#M19018</guid>
      <dc:creator>StefanVollnhofer</dc:creator>
      <dc:date>2014-01-08T06:11:30Z</dc:date>
    </item>
  </channel>
</rss>

