<?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: Create Tin with multiple input features in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/create-tin-with-multiple-input-features/m-p/283791#M21907</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was finally able to get this running.&amp;nbsp; My work around.....Create an empty TIN, then used "Edit TIN" which allows multiple input features.&amp;nbsp; This seems really silly since you can have multiple input features when using the create TIN tool in ArcToolbox. Maybe I was just doing something wrong with "Create TIN", so if you have a different solution I would love to know.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Apr 2013 18:03:31 GMT</pubDate>
    <dc:creator>RileyCotter</dc:creator>
    <dc:date>2013-04-04T18:03:31Z</dc:date>
    <item>
      <title>Create Tin with multiple input features</title>
      <link>https://community.esri.com/t5/python-questions/create-tin-with-multiple-input-features/m-p/283790#M21906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This piece of code works just fine in my script and the TIN is output with no problems&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;arcpy.CreateTin_3d(TIN_name, coordsys, outputFC + " Shape.Z masspoints", Delaunay)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, when I try to add my second input feature my code will not run&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;arcpy.CreateTin_3d(TIN_name, coordsys, outputFC + " Shape.Z masspoints" ; waterPoly + " Shape.Z softerase", Delaunay)
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the code that I get when I export a script from ModelBuilder. However, these are hard coded shapefiles that &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;arcpy.CreateTin_3d(Output_TIN, "", "test Shape.Z masspoints &amp;lt;None&amp;gt;;test_3d_polys Shape.Z softerase &amp;lt;None&amp;gt;", "DELAUNAY")&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This doesn't work either&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="plain" name="code"&gt;arcpy.CreateTin_3d(TIN_name, coordsys, [outputFC + " Shape.Z masspoints"; waterPoly + " Shape.Z softerase"], Delaunay)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2013 16:11:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-tin-with-multiple-input-features/m-p/283790#M21906</guid>
      <dc:creator>RileyCotter</dc:creator>
      <dc:date>2013-04-04T16:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Create Tin with multiple input features</title>
      <link>https://community.esri.com/t5/python-questions/create-tin-with-multiple-input-features/m-p/283791#M21907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was finally able to get this running.&amp;nbsp; My work around.....Create an empty TIN, then used "Edit TIN" which allows multiple input features.&amp;nbsp; This seems really silly since you can have multiple input features when using the create TIN tool in ArcToolbox. Maybe I was just doing something wrong with "Create TIN", so if you have a different solution I would love to know.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2013 18:03:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-tin-with-multiple-input-features/m-p/283791#M21907</guid>
      <dc:creator>RileyCotter</dc:creator>
      <dc:date>2013-04-04T18:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create Tin with multiple input features</title>
      <link>https://community.esri.com/t5/python-questions/create-tin-with-multiple-input-features/m-p/283792#M21908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Cotterrj,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;try this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
spatial_reference = arcpy.SpatialReference(31466) # Zone 2

arcpy.CheckOutExtension("3D")
# input verzeichnis
env.workspace = r"C:\Temp"
# tin name
tin_name=r"test5"

fc1="abgrabungen01"
fc1_type = "Shape.Z"
fc1_sftype="masspoints"

arcpy.ddd.CreateTin(tin_name, spatial_reference,\
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "{0} {1} {2};{3} {4} {5}"\
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .format(fc1,fc1_type,fc1_sftype,"abgrabungen","Shape.Z","hardline"), "CONSTRAINED_DELAUNAY")

&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Klaus&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:43:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-tin-with-multiple-input-features/m-p/283792#M21908</guid>
      <dc:creator>KlausOsadnik1</dc:creator>
      <dc:date>2021-12-11T13:43:45Z</dc:date>
    </item>
  </channel>
</rss>

