Bands From Features (Production Mapping)
Zusammenfassung
Converts point, multipoint, polyline, or polygon elevation features within an area of interest (AOI) into polygon band features. Output band size is determined by defining ranges from an input attribute, like elevation, in the input feature class or layer. A polygon feature class or feature layer defines the AOI.
Verwendung
-
Input Area of Interest Features must be polygons. You can select features with a selection tool or create a layer definition query to limit the size of the AOI. If running the tool in ArcCatalog, use a layer file with a selection set or a definition query to restrict the size of the AOI. If no selection set or layer definition query is provided, all features inside the AOI will be used to create bands.
Input Elevation Features contain a value field holding elevation values. You can specify multiple input elevation feature classes with different elevation fields and units. Create a selection layer or apply a layer definition query to limit the number of features processed.
Band Units, used in generating output bands, can be either Meters or Feet.
Ranges are used to define the size of output bands. Use the Dissolve or Frequency tools to extract a list of unique values from your polyline data. Check Ranges as percent to specify that range values be interpreted as percentiles.
Use a unique value renderer on the range name field in the output results to visualize the elevation or isoline bands.
Use Input Exclusion Features to block out areas of processing within the AOI. No output bands will be created where exclusion features overlap input elevation features.
The tool uses a triangulation algorithm to create bands between contours or isolines. Setting the refine triangulation parameter can increase band placement accuracy by calculating new elevation values (+/- 1/3 contour interval) in places where triangulated edges have identical elevation.
To use this tool in a stand-alone script, check out a production mapping foundation license: arcpy.gp.CheckOutExtension("Foundation").
Syntax
Parameter | Erläuterung | Datentyp |
in_aoi_features |
Polygon feature layer or feature class defining the area of interest. | Feature Layer |
in_elevation_features [[Feature layer, Field, Linear Unit],...] |
The point, multipoint, polyline, or polygon feature layers or feature classes, their attribute fields (value fields) that contain elevation or isoline data, and distance units of those value fields. | Value Table |
in_bands_units | Output band distance units.
| String |
out_bands_featureclass |
The output feature class that contains the bands created by the tool. | Feature Class |
in_ranges_as_percent | Specifies if the tool interprets range values as values or percentiles.
| Boolean |
in_bands_ranges [[from_value, to_value, range_name],...] |
The from-to range values for the bands that are going to be created. The list should contain space-delimited strings with a from value, to value, and a name for the range. A range from 100 to 200 feet could look like this: 100 200 low_elev. | Value Table |
in_exclusion_features [in_exclusion_features,...] (optional) |
Polygon feature layers or feature classes used to exclude areas from processing where exclusion and AOI features overlap. | Feature Layer |
in_rounding_option (optional) | Specifies whether input values round up, down, or interpolate within their range. Interpolate is the default option.
| String |
in_iterations_count (optional) | Number of times, from 1–5, the tool will run on a feature to narrow down the interpolated value. The default is 2. Hinweis: This option is only available if PERCENTILE_VALUE is set for in_ranges_as_percent and in_rounding_option is set to Interpolate. | String |
in_tolerance (optional) | Hinweis: This option is only available if PERCENTILE_VALUE is set for in_ranges_as_percent and in_rounding_option is set to Interpolate. Otherwise, tolerance is computed from the high and low value in the value field. | Double |
in_refine_triangulation (optional) | Specifies if the tool will run the refine triangulation algorithm.
| Boolean |
out_triangulation_featureclass (optional) |
The triangulated feature class used to generate bands from features. | Feature Class |
out_interpolated_isolines_featureclass (optional) |
Polyline feature class interpolated from Input Elevation Features. | Feature Class |
out_topological_errors_featureclass (optional) |
Point feature class that contains topological error features produced during processing. Types of errors include:
| Feature Class |
Codebeispiel
This ArcGIS Python window script demonstrates the use of the BandsFromFeatures function. The script uses a subset of production mapping sample data. The OrangeCounty feature class is an extract from the US_Counties data in the sample reference fGdb. The OC_ElevationBands feature class is an extract of the SoCal sample geodatabase contour data.
# Name: BandsFromFeatures.py # Description: Creates polygon bands from contour data # Author: ESRI # Date: March 2010 import arcpy # area of interest feature class arcpy.MakeFeatureLayer_management("C:/data/ElevationBands.gdb/OrangeCounty","OrangeCounty") # output bands feature class OCBands = "C:/data/ElevationBands.gdb/OC_ElevationBands" # set the toolbox arcpy.ImportToolbox(r'C:\Program Files\ArcGIS\Desktop10.0\ArcToolbox\Toolboxes\Production Mapping Tools.tbx') # path to the elevation/isoline feature class, attribute with range values, and range value units ElevList = "C:/data/ElevationBands.gdb/OC_Elevations zv2 Meters" # Range list used to define the bands RangeList = "1000 1100 10-11;1100 1200 11-12;1200 1300 12-13;1300 1400 13-14;1400 1500 14-15;1500 1600 15-16" # execute the tool - arcpy.BandsFromFeatures_production("OrangeCounty",ElevList,"Meters", OCBands, "ABSOLUTE_VALUE",RangeList,"","Interpolate", "2", 1, "REFINE_TRIANGULATION","", "", "")