Show Navigation | Hide Navigation
You are here:
Geoprocessing tool reference > Analysis toolbox > Proximity toolset > Tools

Buffer (Analysis)

Release 9.2
Last modified January 13, 2009
E-mail This Topic Printable Version Give Us Feedback

Print all topics in : "Tools"


Related Topics

Creates buffer polygons to a specified distance around the Input Features. An optional dissolve can be performed to remove overlapping buffers.

Learn more about how Buffer works

Learn more about Buffering complex features


Illustration

Buffer illustration

Usage tips

Command line syntax
An overview of the Command Line window
Buffer_analysis <in_features> <out_feature_class> <buffer_distance_or_field> {FULL | LEFT | RIGHT} {ROUND | FLAT} {NONE | ALL | LIST} {dissolve_field;dissolve_field...}

Parameter Explanation Data Type
<in_features>

The features to be buffered.

Feature Layer
<out_feature_class>

The feature class that will contain the buffer features.

Feature Class
<buffer_distance_or_field>

The distance used to create buffer zones around Input Features. Either a value or a numeric field can be used to provide buffer distances.

For polygon features, if a negative buffer distance is used, buffers will be generated on the insides of polygons.

If the distance units are not specified, or entered as 'Unknown', the units of the Input Features are used (or if the Output Coordinate System environment has been set, its units will be used).

Linear unit | Field
{FULL | LEFT | RIGHT}

The side(s) of a line that will be buffered.

  • FULL — A buffer will be generated on both sides of the line. This is the default.
  • LEFT — The topological left of a line will be buffered.
  • RIGHT — The topological right of a line will be buffered.

The LEFT and RIGHT options are not available with an ArcView or ArcEditor license.

String
{ROUND | FLAT}

For lines, the shape of the buffer at the line end points.

  • ROUND — End will be in the shape of a half circle. This is the default.
  • FLAT — Creates rectangular line endings with the middle of the short side of the rectangle coincident with the end point of the line. This option is not available with an ArcView or ArcEditor license.

String
{NONE | ALL | LIST}

Specifies whether a dissolve will be performed to remove buffer feature overlap.

  • NONE — Individual buffer for each feature is maintained, regardless of overlap. This is the default.
  • ALL — Dissolves all the buffers together into a single feature and removes any overlap.
  • LIST — Dissolves by a given list of fields.

String
{dissolve_field;dissolve_field...}

List of field(s) for the dissolve. Buffer polygons that share the same set of values in their Dissolve Field(s) will be dissolved together.

The Add Field button, which is used only in ModelBuilder, allows you to add expected field(s) so you can complete the dialog and continue to build your model.

Field
Data types for geoprocessing tool parameters


Command line example

Buffer_analysis c:\basedata\road.shp c:\basedata\buffered_roads.shp '200 Feet' FULL FLAT

Scripting syntax
About getting started with writing geoprocessing scripts
Buffer_analysis (in_features, out_feature_class, buffer_distance_or_field, line_side, line_end_type, dissolve_option, dissolve_field)

Parameter Explanation Data Type
in_features (Required)

The features to be buffered.

Feature Layer
out_feature_class (Required)

The feature class that will contain the buffer features.

Feature Class
buffer_distance_or_field (Required)

The distance used to create buffer zones around Input Features. Either a value or a numeric field can be used to provide buffer distances.

For polygon features, if a negative buffer distance is used, buffers will be generated on the insides of polygons.

If the distance units are not specified, or entered as 'Unknown', the units of the Input Features are used (or if the Output Coordinate System environment has been set, its units will be used).

Linear unit | Field
line_side (Optional)

The side(s) of a line that will be buffered.

  • FULL — A buffer will be generated on both sides of the line. This is the default.
  • LEFT — The topological left of a line will be buffered.
  • RIGHT — The topological right of a line will be buffered.

The LEFT and RIGHT options are not available with an ArcView or ArcEditor license.

String
line_end_type (Optional)

For lines, the shape of the buffer at the line end points.

  • ROUND — End will be in the shape of a half circle. This is the default.
  • FLAT — Creates rectangular line endings with the middle of the short side of the rectangle coincident with the end point of the line. This option is not available with an ArcView or ArcEditor license.

String
dissolve_option (Optional)

Specifies whether a dissolve will be performed to remove buffer feature overlap.

  • NONE — Individual buffer for each feature is maintained, regardless of overlap. This is the default.
  • ALL — Dissolves all the buffers together into a single feature and removes any overlap.
  • LIST — Dissolves by a given list of fields.

String
dissolve_field (Optional)

List of field(s) for the dissolve. Buffer polygons that share the same set of values in their Dissolve Field(s) will be dissolved together.

The Add Field button, which is used only in ModelBuilder, allows you to add expected field(s) so you can complete the dialog and continue to build your model.

Field

Data types for geoprocessing tool parameters


Script example

import arcgisscripting
gp = arcgisscripting.create()
gp.workspace = "c:/basedata"
gp.toolbox = "analysis"

# Buffer roads.shp based on each road feature's value in the Distance field,
#  and dissolve buffers into groups according to values from Road_Type field.
gp.buffer("roads.shp", "buffered_roads.shp", "Distance", "FULL", "ROUND", "LIST", "Road_Type")

Please visit the Feedback page to comment or give suggestions on ArcGIS Desktop Help.
Copyright © Environmental Systems Research Institute, Inc.