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

Buffer (Analysis)

Release 9.3
Last modified January 11, 2011
E-mail This Topic Printable Version Give Us Feedback

Print all topics in : "Tools"


Related Topics

NOTE: This topic was updated for 9.3.1.


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.


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 | OUTSIDE_ONLY} {ROUND | FLAT} {NONE | ALL | LIST} {dissolve_field;dissolve_field...}

Parameter Explanation Data Type
<in_features>

The feature layer or feature class to be buffered.

Feature Layer
<out_feature_class>

The feature class that will be created and to which the resulting features will be written.

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.

If a negative buffer distance is specified, the buffer offsets will be generated inside, instead of outside, of the input features. This is only valid for polygon feature classes.

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 | OUTSIDE_ONLY}

Options to buffer to one side of a line or outside polygons:

  • FULL — A buffer will be generated on both sides of the line. If the input is a polygon, the result will include the area inside the polygon. This is the default.
  • LEFT — The buffer will be generated on the LEFT side of the line.
  • RIGHT — The buffer will be generated on the RIGHT side of the line.
  • OUTSIDE_ONLY — The area inside the input polygon features will be excluded from the resulting buffer.

These 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.

These options are not available with an ArcView or ArcEditor license. Line buffers will always have ROUND ends.

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 fields so you can complete the dialog box 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 feature layer or feature class to be buffered.

Feature Layer
out_feature_class (Required)

The feature class that will be created and to which the resulting features will be written.

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.

If a negative buffer distance is specified, the buffer offsets will be generated inside, instead of outside, of the input features. This is only valid for polygon feature classes.

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)

Options to buffer to one side of a line or outside polygons:

  • FULL — A buffer will be generated on both sides of the line. If the input is a polygon, the result will include the area inside the polygon. This is the default.
  • LEFT — The buffer will be generated on the LEFT side of the line.
  • RIGHT — The buffer will be generated on the RIGHT side of the line.
  • OUTSIDE_ONLY — The area inside the input polygon features will be excluded from the resulting buffer.

These 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.

These options are not available with an ArcView or ArcEditor license. Line buffers will always have ROUND ends.

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 fields so you can complete the dialog box 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.