Dominio ráster (3D Analyst)
Resumen
Crea una huella de polígono o polilínea de partes de datos de un dataset ráster.
Ilustración
Uso
Los rásteres de banda única o multibanda se pueden proporcionar como entrada.
La entidad de dominio se extenderá hasta el centro de las celdas del perímetro en los bloques de datos contiguos del ráster. El centro de la celda define la zona de interpolación de una superficie de ráster. Las celdas NoData se ignoran en la entidad de salida.
La geometría de salida se coloca en un registro de entidad y puede constar de la entidad multiparte si el ráster tiene celdas de datos discontinuas separadas por celdas NoData.
Nota:3D polygons only contain elevation values along the perimeter of the features, as interior portions of the polygon will not contain any vertices. When drawn in 3D with an area fill, the boundary vertices are arbitrarily connected into triangles for rendering. Unless the polygon is planar, either sloped or horizontal, it's unlikely the fill will accurately represent the interior surface. For this reason, it is recommended that nonplanar 3D polygons are drawn without fill symbology.
Sintaxis
Parámetro | Explicación | Tipo de datos |
in_raster |
The input raster. | Raster Layer |
out_feature_class |
The output feature class. | Feature Class |
out_geometry_type |
The geometry of the output feature class.
| String |
Ejemplo de código
The following sample demonstrates the use of this tool in the Python window:
import arcpy from arcpy import env arcpy.CheckOutExtension("3D") env.workspace = "C:/data" arcpy.RasterDomain_3d("dtm_grd", "raster_domain.shp", "POLYGON")
The following sample demonstrates the use of this tool in a stand-alone Python script:
'''********************************************************************* Name: RasterDomain Example Description: This script demonstrates how to use the Raster Domain tool to generate polygon footprints for all *.img rasters in a given workspace. **********************************************************************''' # Import system modules import arcpy from arcpy import env # Obtain a license for the ArcGIS 3D Analyst extension arcpy.CheckOutExtension("3D") # Set environment settings env.workspace = "C:/data" try: # Create the list of IMG rasters rasterList = arcpy.ListRasters("*", "IMG") # Verify there are rasters in the list if rasterList: # Loop the process for each raster for raster in rasterList: # Set Local Variables outGeom = "POLYGON" # output geometry type # The [:-4] strips the .img from the raster name outPoly = "domain_" + raster[:-4] + ".shp" print "Creating footprint polygon for " + raster + "." #Execute RasterDomain arcpy.RasterDomain_3d(raster, outPoly, outGeom) print "Finished." else: "There are no IMG files in the " + env.workspace + " directory." except Exception as e: # Returns any other error messages print e.message