Label | Explanation | Data Type |
Input Features | The input features that will be processed. | Feature Layer |
Grouping Field
| The field that will be used to determine which features share coincident, non-overlapping boundaries. | Field |
Output Feature Class | The feature class that will be produced. | Feature Class |
Method
| The method that will be used to regularize the input features.
| String |
Tolerance
| The maximum distance that the regularized footprint can deviate from the boundary of its originating feature. | Linear Unit |
Precision
| The precision of the spatial grid that will be used in the regularization process. Valid values range from 0.05 to 0.25. | Double |
Angular Deviation Limit
| The maximum deviation of the best fit line's interior angles that will be tolerated when using the Right Angles and Diagonals (RIGHT_ANGLES_AND_DIAGONALS) method. This value should generally be kept to less than 5° to obtain best results. This parameter is disabled for other regularization methods. | Double |
Summary
Regularizes building footprints that have common boundaries.
Usage
This tool uses a polyline compression algorithm to correct distortions in building footprint polygons created through feature extraction workflows that may produce undesirable artifacts.
When regularizing building footprints that are derived from raster data, the regularization tolerance should be larger than the resolution of the source raster.
Features with adjacent boundaries must have a common attribute value in order to create a regularized boundary that does not overlap another feature. If no common attribute is available, consider the following steps:
- Use the Buffer tool with a buffer distance that matches the desired regularization tolerance.
- Process the buffered polygon features with the Union tool to create a single feature for the overlapping polygons.
- Use the Spatial Join tool to add the unique ID from the unioned polygons to the original input features that will be regularized.
- Run the Regularize Adjacent Building Footprint tool with the field containing the unique ID specified in the Grouping Field (group parameter in Python).
Consider using the Any Angles method for input features comprised of acute or reflex interior angles, or when the angular bend between two segments does not fall on a 45° interval between 90° and 180°.
When the tool cannot produce a regularized solution for a given input, the original feature is copied to the output. The value specified in the STATUS field will indicate whether the feature was regularized as follows:
- 0—Regularized feature
- 1—Original feature
Parameters
arcpy.ddd.RegularizeAdjacentBuildingFootprint(in_features, group, out_feature_class, method, tolerance, precision, angular_limit)
Name | Explanation | Data Type |
in_features | The input features that will be processed. | Feature Layer |
group | The field that will be used to determine which features share coincident, non-overlapping boundaries. | Field |
out_feature_class | The feature class that will be produced. | Feature Class |
method | The method that will be used to regularize the input features.
| String |
tolerance | The maximum distance that the regularized footprint can deviate from the boundary of its originating feature. | Linear Unit |
precision | The precision of the spatial grid that will be used in the regularization process. Valid values range from 0.05 to 0.25. | Double |
angular_limit | The maximum deviation of the best fit line's interior angles that will be tolerated when using the Right Angles and Diagonals (RIGHT_ANGLES_AND_DIAGONALS) method. This value should generally be kept to less than 5° to obtain best results. This parameter is disabled for other regularization methods. | Double |
Code sample
The following sample demonstrates the use of this tool in the Python window.
arcpy.env.workspace = 'c:/data'
arcpy.ddd.RegularizeAdjacentBuildingFootprint('rough_footprints.shp', 'Block_ID',
'regularized_footprints.shp',
'RIGHT_ANGLES_AND_DIAGONALS',
'2 Meters', 0.10)
The following sample demonstrates the use of this tool in a stand-alone Python script.
'''****************************************************************************
Name: Extract Building Footprints
Description: Extract footprint from lidar points classified as buildings,
regularize its geometry, and calculate the building height.
****************************************************************************'''
import arcpy
lasd = arcpy.GetParameterAsText(0)
footprint = arcpy.GetParameterAsText(1)
try:
lasd_layer = 'building points'
arcpy.management.MakeLasDatasetLayer(lasd, lasd_layer, class_code=6)
temp_raster = 'in_memory/bldg_raster'
arcpy.management.LasPointStatsAsRaster(lasd_layer, temp_raster,
'PREDOMINANT_CLASS', 'CELLSIZE', 2.5)
temp_footprint = 'in_memory/footprint'
arcpy.conversion.RasterToPolygon(temp_raster, temp_footprint)
arcpy.ddd.RegularizeBuildingFootprint(temp_footprint, footprint,
method='RIGHT_ANGLES')
arcpy.ddd.LasPointStatsByArea(lasd_layer, footprint, ['MIN_Z', 'MAX_Z'])
arcpy.management.AddField(footprint, 'Height', 'Double')
arcpy.management.CalculateField(footprint, 'Height',
"round('!Z_Max! - !Z_Min!', 2)",
'PYTHON_9.3')
except arcpy.ExecuteError:
print(arcpy.GetMessages())