Add Terrain Points (3D Analyst)

Récapitulatif

Adds multipoints to an embedded terrain feature class by appending them or by using them to replace existing multipoints that fall within the same extent.

HéritageHéritage :

This is a deprecated tool. To learn more about how this tool works click here to view archived documentation. This functionality has been added to the Append Terrain Points tool.

Utilisation

Syntaxe

AddTerrainPoints_3d (in_terrain, terrain_feature_class, in_feature_class, {method})
ParamètreExplicationType de données
in_terrain

The terrain dataset to be modified.

Terrain Layer
terrain_feature_class

The embedded feature class to which points will be added.

String
in_feature_class

The feature class containing the points to be added.

Feature Layer
method
(Facultatif)

Indicates whether points are appended to the target or used to replace those in the target.

String

Exemple de code

Add Terrain Points example (Python window)

L'exemple suivant illustre l'utilisation de cet outil dans la fenêtre Python :

import arcgisscripting
gp = arcgisscripting.create()

gp.CheckOutExtension("3D")
gp.workspace = "C:/data"
gp.AddTerrainPoints_3d("sample.gdb/featuredataset/terrain", "mass_points", "new_points.shp", "APPEND")

Environnements

Rubriques connexes

Informations de licence

ArcView : Obligatoire 3D Analyst
ArcEditor : Obligatoire 3D Analyst
ArcInfo : Obligatoire 3D Analyst

7/10/2012