# Purpose: Adding features to a TIN.
# Create the Geoprocessor object
import arcgisscripting
gp = arcgisscripting.create()

#Check out the 3D Analyst extension
gp.CheckOutExtension ("3D")

try:
     # Set the workspace (to avoid having to type in the full path to the data e
    # gp.workspace = "D:/Docs1/GP/GPOutput"
      gp.workspace = "E:/CZTinsPCS"
    # Select the 3D Analyst Toolbox
      gp.toolbox = "3D"

    # Process: Add features to a blank TIN
      Params = ("PolygonRegionPCS.shp <None> <None> hardclip true")
      gp.edittin_3d ("Earthcopy", Params)

except:
    # If an error occurred while running the tool print the error messages.
    print gp.GetMessages()

 

备注: (1)执行之前请备份TIN

         (2)运行的机器需要安装python   //几兆

        (3)将下列代码拷贝到txt文件中,修改后缀名成.py,运行即可

 

相关文章:

  • 2022-01-05
  • 2021-07-13
  • 2022-12-23
  • 2021-12-27
  • 2021-09-10
  • 2021-07-08
  • 2021-06-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-30
相关资源
相似解决方案