map analysis with vector data - ceprofs.civil.tamu.edu  · web viewin the next wizard,...

31
Map Analysis with Vector Data Prepared by Francisco Olivera, Ph.D., P.E. and Srikanth Koka Department of Civil Engineering Texas A&M University August 8, 2004 Contents: Brief Overview of Map Analysis Goals of the Exercise Computer and Data Requirements Procedure: 1. Selecting Features 2. GeoProcessing Wizard 3. Tabular Analysis 4. Spatial Join 5. Buffers Brief Overview of Map Analysis Map analysis consists of inferring information necessary for engineering/scientific tasks from general information contained in digital spatial datasets. In this exercise, analysis will be performed using vector data (points, lines and polygons). Goals of the Exercise Introduction to: Selecting features Geoprocessing tools Tabular analysis Texas A&M University Department of Civil Engineering

Upload: dinhkiet

Post on 27-Mar-2019

213 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

Map Analysis with Vector DataPrepared by Francisco Olivera, Ph.D., P.E. and Srikanth Koka

Department of Civil EngineeringTexas A&M University

August 8, 2004

Contents:Brief Overview of Map AnalysisGoals of the ExerciseComputer and Data RequirementsProcedure:

1. Selecting Features2. GeoProcessing Wizard3. Tabular Analysis4. Spatial Join5. Buffers

Brief Overview of Map Analysis

Map analysis consists of inferring information necessary for engineering/scientific tasks from general information contained in digital spatial datasets. In this exercise, analysis will be performed using vector data (points, lines and polygons).

Goals of the Exercise

Introduction to: Selecting features Geoprocessing tools Tabular analysis Spatial join Buffers

Computer and Data Requirements

To carry out this exercise, you need to have a computer that runs ArcGIS 8.3.

Texas A&M UniversityDepartment of Civil Engineering

Page 2: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

You will be working with the following spatial datasets contained in 3 different folders, during this exercise:

Main Folder: VectorAnal

Folder 1: SelectFeatstexas_counties.shp containing the county features, texas_rivers.shp containing the river featuresTexas_roads.shp containing the road features

Folder2: GeoWizardA: polygon dataset, B: polygon dataset, C: line dataset, D: point dataset, E: point dataset

In addition to geometric information (area, perimeter and length), the feature classes have the following fields:AConc: Mass of a certain fertilizer per unit area (Kg/m2) (Intensive attribute)ATrees: Number of trees (Extensive attribute)BOwner: Land owner (Intensive attribute)CName: Road name (Intensive attribute)DRain: Annual precipitation depth (mm) (Intensive attribute)ERain: Annual precipitation depth (mm) (Intensive attribute)

Folder3: TabAnalCityInfo.dbf, dbf table containing population information of cities in TexasTX_Cities.shp, point shapefile containing cities of Texas TX_counties.shp, polygon shapefile containing counties of Texas

Procedure

1. Selecting Features

A. Selecting features manually

In this section of the exercise you are going to select features manually.

(1) Open ArcMap from the Windows Start menu.

(2) Add texas_counties.shp, texas_rivers and Texas_roads shapefiles (located in SelectFeats folder) to the data frame using the Add Data tool. Save the map document with a name of your choice. You will now select features from the texas_counties layer only. In order to select features from this layer only you have to choose the selectable layers.

Texas A&M UniversityDepartment of Civil Engineering 2

Page 3: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

(3) On the Selection dropdown menu of the ArcMap, click on Set Selectable Layers. Remove the check marks for all the layers except texas_counties and Close the wizard. You can also change the options for selecting features by clicking Options in the Selection dropdown menu.

(4) In the wizard that opens, take a look at the options and information given, but change only the selection color by going to the Selection Color tab. Here you should change the color from blue to red and click OK.

Texas A&M UniversityDepartment of Civil Engineering 3

Page 4: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

(5) Now that you have chosen the layer you want to select features from, and a color for selection, make sure that the toolbar containing the Select tool is visible. That is, make sure that the Tools toolbar is visible in the map.

(6) If it is not visible, click Tools/Customize on the Main Menu. Under the Toolbars tab, select Tools and click Close.

(7) To select only one feature, click on the SelectFeatures tool, , and then click on the feature you want to select. To select multiple features press the Shift key, and then using the Select tool, start clicking on all the features you want to select.

(8) You can now toggle the selection by right clicking on the texas_counties layer, pointing to Selection and clicking on Switch Selection.

(9) To clear the selections, click on Selection/Clear Selected Features.

B. Selecting features by attributes

Manual selection is useful when you know the locations of the features you want to select. Instead, if you have information about an attribute such as the names of the counties, you can use this information and define a query to select the features automatically.

Texas A&M UniversityDepartment of Civil Engineering 4

Page 5: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

In this section of the exercise you will select the county features whose names are Brazos, Carson, Parker, Reeves and Refugio using Select by attributes tool.

(1) Click on Selection/Select by Attributes. In the wizard that opens, choose texas_counties for Layer, and Create a new selection for the Method.

(2) In the Fields box, double-click on COUNTY_NAM so that the list containing all the county names appear in the Unique values box. To build the query, use the query window, which is titled “SELECT * FROM texas_counties WHERE:” You can type a query if you want, but it could be error prone; inserting a query by clicking on the buttons provided for building queries is a better idea.

(3) Now click on the equals (=) button and in the Unique values list, browse down to Brazos and double-click it.

(4) You should see a statement saying “COUNTY_NAM” = ‘Brazos.’ Up to this point, your query can select only one feature. To select all the other counties, create statements like the one described above, each separated by OR.

(5) To add the next statement, click the OR button and then double-click on COUNTY_NAM. Click on the equals (=) button and in the Unique values list, browse down to Carson and double-click it. Repeat this step for all the other three counties and your final query should look like: “COUNTY_NAM” = ‘Brazos’ OR “COUNTY_NAM” = ‘Carson’ OR “COUNTY_NAM” = ‘Parker’ OR “COUNTY_NAM” = ‘Reeves’ OR “COUNTY_NAM” = ‘Refugio.’

(6) Click Apply to select the features and click Close to close the wizard.

Texas A&M UniversityDepartment of Civil Engineering 5

Page 6: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

Take a look at the selected features on the map. Keep the selection as it is because it will be used in the next part of the exercise.

C. Selecting features by location

In this part of the exercise, you will select features based on location by following the directions below.

(1) Make the Texas_roads and texas_rivers layers visible. You will select the roads that share the same spatial location as that of the selected counties, i.e., in other words, you will select the roads and rivers that are contained by the selected counties.

(2) Do this by clicking Selection/Select by Location. A dialog titled, “Select by Location” opens. In the dialog, keep “select features from” as the option for I want to:.

(3) Choose “Texas_roads” and “texas_rivers” for the following layers:, choose “intersect” for that:, leave the option of “texas_counties” for the features in this layer:, let the check be inserted for Use selected features and then click Apply.

Texas A&M UniversityDepartment of Civil Engineering 6

Page 7: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

(4) Take a look the features. Close the wizard and make the texas_counties layer invisible so that you can look at the selected features clearly.

2. GeoProcessing Wizard

To utilize the functions of the GeoProcessing wizard, you will use the same data provided in the slides.

The five feature classes used in this analysis of the geoprocessing tools are:

A) a polygon datasetB) a polygon dataset C) a line dataset D) a point datasetE) a point dataset

A. Dissolving features

The Dissolve function creates a new feature class/shapefile in which all features that have the same value for a given attribute are aggregated into a single record. It applies to one dataset only; the user has the option of defining how attributes are recalculated. Before going into details on how to use the GeoProcessing wizard, add A.shp, B.shp, C.shp, D.shp and E.shp from the GeoWizard folder to a new ArcMap document and save the document.

Texas A&M UniversityDepartment of Civil Engineering 7

Page 8: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

B.shp defines the land that belongs to different people. Make all the layers invisible except B.shp. Right-click on B-layer and select “Label Features.” Notice that John and Melissa each have two separate parcels of land. In order to dissolve all the land that belongs to a person, you will have to use the dissolve function under the geoprocessing wizard. Do this by following the directions below.

(1) Click on Tools/GeoProcessing Wizard and select Dissolve features based on an attribute. Click Next.

(2) In the next wizard that opens, select B under Select the input layer to dissolve:, select BOWNER for Select an attribute on which to dissolve:, choose the working folder and enter B_Dissolve as the name for the output under Specify the output shapefile or feature class. Click on Save and then click Next.

(3) In the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as they are and click Finish.

Texas A&M UniversityDepartment of Civil Engineering 8

Page 9: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

(4) Open the attribute tables of B and B_DISSOLVE, and note that the number of polygons have dropped from 9 to 7 by comparing records in the attribute tables of B.shp and B_Dissolve.shp. After dissolving the dataset, the key attribute (i.e., BOWNER) is copied, and two new attributes are created: Count_BOWNER – the number of polygons aggregated, and Sum_Area – the sum of the previous attribute Area (as requested in previous window).

You should see that in the attribute table of B, John and Melissa each have two rows. In the attribute table for B_Dissolve, they have only one. Select Melissa’s row in B-Dissolve and note that both polygons belonging to her are selected.

Texas A&M UniversityDepartment of Civil Engineering 9

Page 10: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

B. Merge layers

The Merge function creates a new feature class or shapefile from features of two or more feature classes or shapefiles, attributes of only one of the feature classes or shapefiles are retained, and attributes of the other feature classes or shapefiles are retained only if they have the same name. The user has the option of selecting the dataset whose attributes will be retained.

(1) Make all layers invisible except D and E. Change the symbology of these layers before merging them. Change the symbol of layer D to the type called “Square2.”

(2) This can be done by left-clicking on the layer and choosing Square2 in the Symbol Selector wizard.

(3) Similarly, change the symbol of layer E to the type called “Circle 2.” This can be done by left-clicking on the layer and choosing Circle 2 in the Symbol Selector wizard.

(4) You will now merge D.shp and E.shp so that all the precipitation stations are in the same dataset. Do this by clicking on Tools/GeoProcessing Wizard. A wizard opens where you should select Merge layers together and then click Next.

(5) In the next wizard that opens, select D-point and E-point under Select at least two layers to merge. Select D-point for Use fields from:, choose the working folder and enter D_Merge as the name for the output under Specify the output shapefile or feature class. Click Save and then click Finish.

Texas A&M UniversityDepartment of Civil Engineering 10

Page 11: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

C. Clip layers

The Clip function creates a new feature class by clipping an input feature class with another clipping polygon feature class. The attributes of the input feature class are not altered (including the geometry).

In this exercise, you are going to clip road features of C.shp using selected features of B_Dissolve. Before going into the process of clipping:

(1) Select John’s property by first opening the attribute table of B_Dissolve.

(2) In the field named BOWNER find John and select the record by clicking on the box located on the left most part of the record.

(3) In the Table of Contents change the order of the layers so that C is on the top and B_Dissolve is next. Make all the layers invisible except C and B_Dissolve.

You are now ready to go into the process of clipping:

(4) Click on Tools/GeoProcessing Wizard, then select Clip one layer based on the other. Click Next.

(5) Select C as the option for Select the input layer to clip:, choose B_Dissolve for Select a polygon clip layer:, let the Use selected features only option be selected, enter the name for new clip shapefile as C_Clip and specify where the

Texas A&M UniversityDepartment of Civil Engineering 11

Page 12: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

output shapefile should be stored using the folder icon located for Specify the output shapefile or feature class.

(6) Click Save and then Finish. A new layer would be added to the data frame. To see features of only the new layer make all layers invisible except C_Clip.

D. Intersect layers

The Intersect function creates a new feature class/shapefile in which the features are the result of intersecting the features of an input feature class/shapefile with the

Texas A&M UniversityDepartment of Civil Engineering 12

Page 13: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

polygons of an overlay feature class/shapefile. Resulting features have attributes from both feature classes/shapefiles. In this part of the exercise you will be intersecting A (input) and B (overlay) so that for each resulting polygon the mass of fertilizer per unit area and the owner are a unique combination of values.

(1) In ArcMap, make only layers A and B visible. If the layers have the same legend, change the legends so that they can be distinguished. Now you will intersect the layers.

(2) Click on the Tools/GeoProcessing Wizard and then select Intersect two layers. Click Next.

(3) Select A as the option for Select the input layer to intersect:, choose B for Select a polygon overlay layer:, enter the name for the new intersect shapefile as “ABIntersect” and specify where the output shapefile will be stored using the folder icon located for Specify the output shapefile or feature class. Click Save and then Finish. A new layer will be added to the data frame.

Texas A&M UniversityDepartment of Civil Engineering 13

Page 14: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

E. Union layers

The Union function creates a new feature class/shapefile by combining the polygons of an input feature class/shapefile with the polygons of an overlay feature class/shapefile. The resulting dataset has the extent of both. Only 2 polygon datasets can participate in a union. Union is very similar to Intersect, but in Union the parts of the polygons that do not intersect have zero for the non-defined attributes.

In this part of the exercise you will union A (input) and B (overlay), so that for each resulting polygon the mass of fertilizer per unit area and the owner are a unique combination of values.

(1) In ArcMap, make only layers A and B visible. If the layers have the same legend, change the legends so they can be distinguished. You will now union the layers.

(2) Click on the Tools/GeoProcessing Wizard, then select Union two layers and click Next.

(3) Then select A as the option for Select the input layer to union:, choose B for Select a polygon overlay layer:, enter the name for the new intersect shapefile as “ABUnion” and specify where the output shapefile will be stored using the folder icon located for Specify the output shapefile or feature class. Click Save and then Finish. A new layer will be added to the data frame.

Texas A&M UniversityDepartment of Civil Engineering 14

Page 15: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

Keep this document open, as you will use it for the next section of this exercise.

3. Tabular Analysis

A. Joining tables

Joining tables consists of appending the attributes of a source table to a target table, where the records are related through key fields in each table. The tables do not necessarily have to be attribute tables.

In this part of the exercise you are going to join an attribute table (shapefile) with a stand-alone table. Here we are going to use the TX_Cities shapefile and the CityInfo table containing population information of the cities.

(1) Open a new ArcMap document using the Windows Start menu or by selecting

the new file icon in the toolbar, . To the data frame in the new ArcMap document, add TX_cities.shp and CityInfo.dbf from the TabAnal folder using the Add Data tool. If the table is not visible in the Table of Contents, change the view from Display to Source.

(2) Open the attribute table of TX_Cities shapefile and open the CityInfo table. You should observe that the cities shapefile has 3 fields: FID, Shape*, and CITYNAME. The CityInfo table has 6 fields: OID, CITY_NAME, COUNTY, SIZE, POP_2000 and POP_1990. Here population is given in thousands. You will now join the fields of the CityInfo table to the TX_Cities shapefile using the key fields (i.e., CITYNAME from shapefile and CITY_NAME from the table).

Texas A&M UniversityDepartment of Civil Engineering 15

Page 16: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

(3) Close the tables and then right-click on the TX_cities layer, point to Joins and Relates, click on Join. In the Join Data window that appears, choose “Join attributes from a table” for What do you want to join to this layer?, select CITYNAME for Choose the field in this layer that the join will be based on: , let CityInfo be selected in the next dropdown, let the check mark be inserted for Show the attribute tables of layer in this list, choose CITY_NAME for Choose the field in the table that the join will be based on:, and click OK.

(4) To see the join, open the attribute table of the TX_Cities layer. You will see that the number of fields has increased. The join is temporary; it will vanish once you close the ArcMap document without saving it.

Texas A&M UniversityDepartment of Civil Engineering 16

Page 17: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

(5) To make the join permanent, export the shapefile as a new shapefile by right-clicking on the TX_Cities layer, pointing to Data and then clicking on Export data.

(6) Choose to export All Features and Use the same Coordinate System as this layer’s source data. Select the folder and enter a name for the new shapefile. Click OK and Yes to add exported data to the map as a layer.

(7) You can now remove the join, by right-clicking on the TX_Cities layer, pointing to Joins and Relates/ Remove join(s)/CityInfo. If you open the attribute table of TX_Cities layer, you will see that original table has been restored.

For the next part of the exercise, keep this document open.

B. Relating tables

In the case of a one-to-many relation, in which joining tables is not suggested as one of the many records will be randomly picked for the join, relating tables is an alternative solution. Relating tables consists of relating the records of a source table to the records of a target table through key fields defined for each of the two tables. For example, as a county can have more than one city, it is better to relate them rather than join them.

(1) Add the TX_counties shapefile from the TabAnal folder using the Add Data tool to the data frame in the ArcMap document.

(2) Make sure that the new Join layer is on top of the counties layer. You will now relate the fields of Counties to Join shapefile using the key fields (i.e., NAME_LOCAS from TX_counties shapefile and COUNTY from Join shapefile).

(3) Right-click on the TX_counties layer, point to Joins and Relates, click on Relate. In the form that opens, select NAME_LOCAS for Choose the field in this layer that the relate will be based on:, let Join be selected in the next dropdown menu, choose COUNTY for Choose the field in the related table or layer to base the relate on:, let “Relate1” be the name for the relation and click OK.

Texas A&M UniversityDepartment of Civil Engineering 17

Page 18: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

(4) To see how the relate works, open both the attribute table of TX_Counties by right-clicking on the layer and then clicking on Open Attribute Table. In this table, select any record you want by clicking on the box located on the left-most side of a record.

(5) At the bottom on the table, click Selected as the option for Show, and then click Options/Related Tables/Relate1: Join. The TX_Cities attribute table opens up in which the related rows are selected.

(6) To see only the selected records, at the bottom of the Join attribute table, click Selected as the option for Show. You can also see the selected features on the map by closing the attribute tables. Keep this document open as you will be using it for the next section of the exercise.

Texas A&M UniversityDepartment of Civil Engineering 18

Page 19: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

C. Attribute statistics

Statistics of the attributes of selected records for a given field are obtained using the Statistics function.

In order to see how this function works:

(1) Clear all selected features from the ArcMap document using Selection/Clear selected features.

(2) Make the TX_Counties layer invisible so that you can see only the point features of the Join layer. Open the attribute table of Join layer by right-clicking on it and then clicking on Open Attribute Table.

(3) Select 5 to 7 records of your choice in the attribute table. After selecting the records, right-click on the field name POP_2000 and then click on Statistics. Look at the frequency distribution and then close the statistics window and table.

D. Summarizing tables

Summarizing tables consists of aggregating all the records that have the same value for a user-defined key field into a single record. The values of other fields are aggregated based on user defined options.

For this part of the exercise, you will again use the Join layer.

(1) Before going further, clear all selected features from the map by clicking on Selection/Clear selected features.

(2) You will now summarize the SIZE field. This field contains 6 different values, Community, Large City, Large Town, Major City, Small City and Town, which

Texas A&M UniversityDepartment of Civil Engineering 19

Page 20: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

are all based on city population values. Using the Summarize function you will obtain a table that gives the city count for each type.

(3) Open the attribute table of the Join layer if it is not already open by right-clicking on it and then clicking on Open Attribute Table.

(4) Move left or right in the table so that you are able to see the SIZE field. Right-click on this field and then click on Summarize. Using all the default options in the wizard that opens, specify the output file name as “OutTable.”

(5) Click on Save and then OK. Click Yes to add the new dbf table to the map. Open the dbf table and see the fields SIZE and count_SIZE.

Texas A&M UniversityDepartment of Civil Engineering 20

Page 21: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

4. Spatial Join

The Spatial Join function appends the attributes of a record of a source feature class/shapefile to a record of a target feature class/shapefile with which it shares the same location and creates a new feature class/shapefile.

In this part of the exercise you are going to spatially join a shapefile with another. You will again use the TX_cities shapefile and TX_Counties shapefile.

(1) If there are any features selected in the ArcMap document, clear them by clicking on Selection/Clear selected features. In this part of the exercise, you will join TX_Cities layer with TX_counites layer based on an “Inside” relation, i.e., joining cities point features with the county polygons in which they lay.

(2) Make both layers visible then right-click on the TX_cities layer, point to Joins and Relates, and click on Join.

(3) In the form that opens, choose “Join data from another layer based on spatial location” for What do you want to join to this layer?, select TX_counties for choice 1, let the option it falls inside be selected, choose the working folder for the output shapefile and enter the name “SpatialJoin.”

(4) Click on Save and then OK. A new layer is added to the data frame that contains features belonging to TX_Cities, but the number of fields increases, as the fields from both TX_Cities and TX_counties are included. Open the attribute tables of the new layer and TX_Cities so that you can observe the increase in number of fields.

Texas A&M UniversityDepartment of Civil Engineering 21

Page 22: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

5. Buffers

The Buffer function creates a polygon graphic or a new polygon feature class in which the outlines are at a given distance from buffered graphics or features of a feature class/shapefile. This applies to one feature class only. Buffers can be created in three different ways: single area at a given distance, single area at a distance defined in an attribute of the buffered features, or multiple areas at distances multiple of a given value.

Now close the previous ArcMap document and open a new one using Windows start menu or the New Map File icon. To the data frame in this document, add C.shp from the Geowizard folder using Add Data tool. You will now create a multiple (3) buffer of 1 km around the roads.

(1) In the map, click on Tools/Buffer Wizard to open the Buffer wizard. Take a look at the entries in this frame and click Next.

(2) In the next frame, select the option button for As multiple rings and let 3 be the number of rings. Choose 1 for the Distance between rings:, kilometers for the Distance units are: and then click Next.

(3) In the next frame, select Yes for Dissolve barriers between, enter the path and the name “Buffer” for the output shapefile. Click Save and then Finish. A new layer is added to the data frame, which contains the buffered features. Take a look at its attribute table by right-clicking on the new layer, and then clicking on Open Attribute Table.

Texas A&M UniversityDepartment of Civil Engineering 22

Page 23: Map Analysis with Vector Data - ceprofs.civil.tamu.edu  · Web viewIn the next wizard, double-click the word Area (or click the + box), check Sum, leave the remaining entries as

You can slide the layer C on top of layer Buffer to get a better idea of what you have done.

These materials may be used for research and educational purposes only. Please credit the authors and the Department of Civil Engineering, Texas A&M University.

All commercial rights reserved. Copyright 2004: Texas A&M University.

Texas A&M UniversityDepartment of Civil Engineering 23