Quantcast
Channel: Forums - Python
Viewing all articles
Browse latest Browse all 2485

Create Tin with multiple input features

$
0
0
This piece of code works just fine in my script and the TIN is output with no problems
Code:

arcpy.CreateTin_3d(TIN_name, coordsys, outputFC + " Shape.Z masspoints", Delaunay)
However, when I try to add my second input feature my code will not run
Code:

arcpy.CreateTin_3d(TIN_name, coordsys, outputFC + " Shape.Z masspoints" ; waterPoly + " Shape.Z softerase", Delaunay)
This is the code that I get when I export a script from ModelBuilder. However, these are hard coded shapefiles that
Code:

arcpy.CreateTin_3d(Output_TIN, "", "test Shape.Z masspoints <None>;test_3d_polys Shape.Z softerase <None>", "DELAUNAY")
This doesn't work either
Code:

arcpy.CreateTin_3d(TIN_name, coordsys, [outputFC + " Shape.Z masspoints"; waterPoly + " Shape.Z softerase"], Delaunay)

Viewing all articles
Browse latest Browse all 2485

Trending Articles