I want create a TIN from point features with elevation using a python script.
This is my script:
import arcpy
from arcpy import env
import json as simplejson
import urllib
import sys,os
arcpy.CheckOutExtension("3D")
env.workspace = r"D:\test\Pythontest"
OutputTin = "PointFTin"
Delaunay = "constrained_delaunay"
arcpy.CreateTin_3d(OutputTin,{},"D:\test\Pythontest\PlotGrid_label_prj.shp"+ "Shape.Ele masspoints", Delaunay)
When I run this script I get this error:
RuntimeError: Object: Error in executing tool
Where is it going wrong?