Analyze LAS Runway Obstacles (Aviation)

Disponible con licencia de Aviation Airports.

Resumen

Analyzes lidar data and obstruction identification surfaces (OIS) to determine if lidar points are penetrating.

Uso

  • The Input OIS Features parameter must be a multipatch feature class that contains the OIS.

  • The Input LAS Obstacles parameter is a lidar (LAS) dataset.

  • A point feature is generated, and output for each lidar point that falls within the area is covered by the OIS, where the height of that point exceeds the height of the OIS feature at that point. The x and y point coordinates are the same as the lidar point with which the output point is associated.

    Delta Z

  • This tool requires an Extensión ArcGIS 3D Analyst license.

  • The optional output LAS files will match the LAS version, point record format, and compression of the input.

  • The optional LAS files and LAS dataset file will overwrite any files found that share the same names.

  • When specified to generate the LAS output, LAS file generated containing the lidar points from the input penetrating the OIS surface.

    Delta Z Input Lidar
    Delta Z Output Lidar

Parámetros

EtiquetaExplicaciónTipo de datos
Input OIS Features

The input multipatch features representing one or more OIS. The feature class must be z-enabled.

Feature Layer
Input LAS Obstacles

The input LAS dataset that contains 3D data points covering the area around an airport. The points represent a 3D view of natural and man-made objects that could pose a hazard to flight.

LAS Dataset Layer
Output Obstacle Feature Class
(Opcional)

The output point features that represent lidar points in OIS features in which the height of the lidar point is greater than the height of the enclosing OIS feature at that point. This feature class is required output only if no output LAS dataset is requested.

Feature Layer
Target Folder
(Opcional)

The folder to which LAS files will be written. Each output file will have the same LAS file version and point record format as the input file. This folder is required output only if no output feature class is requested.

Folder
Output LAS Obstacles
(Opcional)

The output LAS dataset referencing the newly created LAS files. This LAS Dataset is created only when the output folder is specified to generate the LAS output.

LAS Dataset Layer
Vertical Clearance
(Opcional)

If a LAS point height is above the OIS surface, that point will be captured. The height of an OIS surface above a given LAS point is temporarily lowered by the specified vertical clearance value. This serves to decrease the distance between the height of the LAS point and the corresponding OIS surface, resulting in the likeliness that more points will be captured. Thus, you can be sure that a more liberal collection of ground features, represented by the LAS points penetrating through the OIS surface, will be captured.

Double
Vertical Clearance Unit
(Opcional)

The linear unit of the vertical clearance.

  • KilometersThe linear unit is kilometers.
  • MetersThe linear unit is meters.
  • DecimetersThe linear unit is decimeters.
  • CentimetersThe linear unit is centimeters.
  • MillimetersThe linear unit is millimeters.
  • Nautical milesThe linear unit is nautical miles.
  • MilesThe linear unit is miles.
  • YardsThe linear unit is yards.
  • FeetThe linear unit is feet.
  • InchesThe linear unit is inches.
  • Decimal degreesThe linear unit is decimal degrees.
  • PointsThe linear unit is points.
  • UnknownThe linear unit is unknown.
String

arcpy.aviation.AnalyzeLASRunwayObstacles(in_ois_features, in_las_obstacles, {out_obstacle_feature_class}, {target_folder}, {out_las_obstacles}, {vertical_clearance}, {vertical_clearance_unit})
NombreExplicaciónTipo de datos
in_ois_features

The input multipatch features representing one or more OIS. The feature class must be z-enabled.

Feature Layer
in_las_obstacles

The input LAS dataset that contains 3D data points covering the area around an airport. The points represent a 3D view of natural and man-made objects that could pose a hazard to flight.

LAS Dataset Layer
out_obstacle_feature_class
(Opcional)

The output point features that represent lidar points in OIS features in which the height of the lidar point is greater than the height of the enclosing OIS feature at that point. This feature class is required output only if no output LAS dataset is requested.

Feature Layer
target_folder
(Opcional)

The folder to which LAS files will be written. Each output file will have the same LAS file version and point record format as the input file. This folder is required output only if no output feature class is requested.

Folder
out_las_obstacles
(Opcional)

The output LAS dataset referencing the newly created LAS files. This LAS Dataset is created only when the output folder is specified to generate the LAS output.

LAS Dataset Layer
vertical_clearance
(Opcional)

If a LAS point height is above the OIS surface, that point will be captured. The height of an OIS surface above a given LAS point is temporarily lowered by the specified vertical clearance value. This serves to decrease the distance between the height of the LAS point and the corresponding OIS surface, resulting in the likeliness that more points will be captured. Thus, you can be sure that a more liberal collection of ground features, represented by the LAS points penetrating through the OIS surface, will be captured.

Double
vertical_clearance_unit
(Opcional)

The linear unit of the vertical clearance.

  • KILOMETERSThe linear unit is kilometers.
  • METERSThe linear unit is meters.
  • DECIMETERSThe linear unit is decimeters.
  • CENTIMETERSThe linear unit is centimeters.
  • MILLIMETERSThe linear unit is millimeters.
  • NAUTICAL_MILESThe linear unit is nautical miles.
  • MILESThe linear unit is miles.
  • YARDSThe linear unit is yards.
  • FEETThe linear unit is feet.
  • INCHESThe linear unit is inches.
  • DECIMAL_DEGREESThe linear unit is decimal degrees.
  • POINTSThe linear unit is points.
  • UNKNOWNThe linear unit is unknown.
String

Muestra de código

AnalyzeLASRunwayObstacles example (stand-alone script)

The following Python window script demonstrates how to use the AnalyzeLASRunwayObstacles tool to generate point feature output.

import arcpy

#set gp environment
arcpy.CheckOutExtension("Airports")
arcpy.CheckOutExtension("3D")

# Input Obstruction Identification Surface Feature Class
inOISFeatures = r"C:\data\ois.gdb\ObstructionIdSurface"

# Input LAS Obstacle Data
inLASObstacles = r"C:\data\PotentialObstacles.lasd"

# Feature class that will contain the output obstacles
outObstacleFeatures = r"C:\data\ois.gdb\ActualObstacles"

# Processing AnalyzeLASRunwayObstacles
arcpy.AnalyzeLASRunwayObstacles_aviation(inOISFeatures, inLASObstacles, outObstacleFeatures)

arcpy.CheckInExtension("3D")
arcpy.CheckInExtension("Airports")
AnalyzeLASRunwayObstacles example 2 (stand-alone script)

The following Python window script demonstrates how to use the AnalyzeLASRunwayObstacles tool to generate a LAS dataset as output.

import arcpy

#set gp environment
arcpy.CheckOutExtension("Airports")
arcpy.CheckOutExtension("3D")

# Input Obstruction Identification Surface Feature Class
inOISFeatures = r"C:\data\ois.gdb\ObstructionIdSurface"

# Input LAS Obstacle Data
inLASObstacles = r"C:\data\PotentialObstacles.lasd"

# Folder that will contain the LIDAR output
outObstacleFolder = r"C:\data\LasObstacles"

# Output LIDAR dataset
outObstacleDataset = r"C:\data\LasObstacles\LasObstacles.lasd"

# Processing AnalyzeLASRunwayObstacles
arcpy.AnalyzeLASRunwayObstacles_aviation(inOISFeatures, inLASObstacles, None, outObstacleFolder, outObstacleDataset)

arcpy.CheckInExtension("3D")
arcpy.CheckInExtension("Airports")
AnalyzeLASRunwayObstacles example 3 (stand-alone script)

The following Python window script demonstrates how to use the AnalyzeLASRunwayObstacles tool using the vertical clearance value.

import arcpy

#set gp environment
arcpy.CheckOutExtension("Airports")
arcpy.CheckOutExtension("3D")

# Input Obstruction Identification Surface Feature Class
inOISFeatures = r"C:\data\ois.gdb\ObstructionIdSurface"

# Input LAS Obstacle Data
inLASObstacles = r"C:\data\PotentialObstacles.lasd"

# Folder that will contain the LIDAR output
outObstacleFolder = r"C:\data\LasObstacles"

# Output LIDAR dataset
outObstacleDataset = r"C:\data\LasObstacles\LasObstacles.lasd"

# Processing AnalyzeLASRunwayObstacles
arcpy.AnalyzeLASRunwayObstacles_aviation(inOISFeatures, inLASObstacles, None, outObstacleFolder, outObstacleDataset, 10, “METERS”)

arcpy.CheckInExtension("3D")
arcpy.CheckInExtension("Airports")

Entornos

Casos especiales

Información de licenciamiento

  • Basic: No
  • Standard: Requiere Airports
  • Advanced: No

Temas relacionados