<?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 arcpy.CreateTin_3d list of input variables in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-createtin-3d-list-of-input-variables/m-p/403683#M31793</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When using CreateTin in arcpy I can input a list of shapefiles if they have z-values like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14352242068783085" data-renderedposition="50_8_912_16" jivemacro_uid="_14352242068783085"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, ["feature1.shp", "feature2.shp"])&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However now one feature has z-values and one has m-values.&amp;nbsp; I can create TINs from the features individually like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14352244164398090" data-renderedposition="129_8_912_16" jivemacro_uid="_14352244164398090"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, "feature1.shp Shape.Z Mass_points &amp;lt;None&amp;gt;")&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;or&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14352244062391408 jive_text_macro" data-renderedposition="166_8_912_16" jivemacro_uid="_14352244062391408"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, "feature2.shp Shape.M Mass_points &amp;lt;None&amp;gt;")&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if I try to put them into a list......&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14352245197915142 jive_text_macro" data-renderedposition="224_8_912_16" jivemacro_uid="_14352245197915142"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, ["feature1.shp Shape.Z Mass_points &amp;lt;None&amp;gt;", "feature2.shp Shape.M Mass_points &amp;lt;None&amp;gt;"])&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;I get the following error:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\ddd.py", line 1735, in CreateTin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;arcgisscripting.ExecuteError: ERROR 999999............&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's going wrong - the features work together if I generate the TIN using the GUI?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jun 2015 09:38:12 GMT</pubDate>
    <dc:creator>BenLeslie1</dc:creator>
    <dc:date>2015-06-25T09:38:12Z</dc:date>
    <item>
      <title>arcpy.CreateTin_3d list of input variables</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-createtin-3d-list-of-input-variables/m-p/403683#M31793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When using CreateTin in arcpy I can input a list of shapefiles if they have z-values like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14352242068783085" data-renderedposition="50_8_912_16" jivemacro_uid="_14352242068783085"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, ["feature1.shp", "feature2.shp"])&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However now one feature has z-values and one has m-values.&amp;nbsp; I can create TINs from the features individually like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14352244164398090" data-renderedposition="129_8_912_16" jivemacro_uid="_14352244164398090"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, "feature1.shp Shape.Z Mass_points &amp;lt;None&amp;gt;")&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;or&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14352244062391408 jive_text_macro" data-renderedposition="166_8_912_16" jivemacro_uid="_14352244062391408"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, "feature2.shp Shape.M Mass_points &amp;lt;None&amp;gt;")&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if I try to put them into a list......&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14352245197915142 jive_text_macro" data-renderedposition="224_8_912_16" jivemacro_uid="_14352245197915142"&gt;&lt;P&gt;arcpy.CreateTin_3d(outTin, CoordSys, ["feature1.shp Shape.Z Mass_points &amp;lt;None&amp;gt;", "feature2.shp Shape.M Mass_points &amp;lt;None&amp;gt;"])&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;I get the following error:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\ddd.py", line 1735, in CreateTin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;arcgisscripting.ExecuteError: ERROR 999999............&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's going wrong - the features work together if I generate the TIN using the GUI?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 09:38:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-createtin-3d-list-of-input-variables/m-p/403683#M31793</guid>
      <dc:creator>BenLeslie1</dc:creator>
      <dc:date>2015-06-25T09:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.CreateTin_3d list of input variables</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-createtin-3d-list-of-input-variables/m-p/403684#M31794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the answer - it wont accept lists with this notation - now I have to input my features in a single string separated by semicolons i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="_jivemacro_uid_14352330843333161 jive_macro_code jive_text_macro" data-renderedposition="50_8_912_16" jivemacro_uid="_14352330843333161"&gt;&lt;SPAN class="string"&gt;"feature1.shp Shape.Z Mass_points &amp;lt;None&amp;gt;;&lt;SPAN class="string"&gt;feature2.shp Shape.M Mass_points &amp;lt;None&amp;gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 11:51:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-createtin-3d-list-of-input-variables/m-p/403684#M31794</guid>
      <dc:creator>BenLeslie1</dc:creator>
      <dc:date>2015-06-25T11:51:41Z</dc:date>
    </item>
  </channel>
</rss>

