Map Analysis with Vector Data

Size: px
Start display at page:

Download "Map Analysis with Vector Data"

Transcription

1 Map Analysis with Vector Data Francisco Olivera, Ph.D., P.E. Srikanth Koka Lauren Walker Aishwarya Vijaykumar Department of Civil Engineering December 5, 2011 Contents Brief Overview of Map Analysis... 1 Goals of the Exercise... 2 Computer and Data Requirements... 2 Procedure Selecting Features... 3 A. Selecting features manually... 3 B. Selecting features by attributes... 5 C. Selecting features by location GeoProcessing Wizard... 9 A. Dissolve features... 9 B. Merge layers C. Clip layers D. Intersect layers E. Union layers Tabular Analysis A. Joining tables B. Relating tables C. Attribute statistics D. Summarizing tables Spatial Join Buffers Brief Overview of Map Analysis Map analysis involves inferring information necessary for engineering and scientific tasks from the general information contained in digital spatial datasets. In this exercise, analysis will be performed using vector data (points, lines, and polygons). 1 Department of Civil Engineering

2 Goals of the Exercise This exercise introduces you to the following: Selecting features Geoprocessing tools Tabular analysis Spatial join Buffers Computer and Data Requirements To perform this exercise, you need a computer that runs ArcGIS 10. The data required for this exercise is available on the class website. During this exercise, you will work with the following spatial datasets contained in three different folders: Main Folder: VectorAnalysis Folder 1: SelectFeats texas_counties.shp contains the county features texas_rivers.shp contains the river features Texas_roads.shp contains the road features Folder2: GeoWizard A.shp and B.shp are polygon datasets C.shp is a line dataset D.shp and E.shp are point datasets In addition to geometric information (area, perimeter, and length), the feature classes have the following fields: Intensive Attributes Extensive Attributes AConc: Mass of a certain fertilizer per unit area (Kg/m 2 ) BOwner: Land owner CName: Road name DRain: Annual precipitation depth (mm) ERain: Annual precipitation depth (mm) ATrees: Number of trees Folder3: TabAnal CityInfo.dbf is a dbf table that contains population information for cities in Texas TX_Cities.shp is a point shapefile that contains the cities of Texas TX_counties.shp is a polygon shapefile that contains the counties of Texas Department of Civil Engineering 2

3 Procedure 1. Selecting Features A. Selecting features manually In this section of the exercise, you will learn how to select features manually. (1) Open ArcMap 10. (2) Add the texas_counties, texas_rivers, and Texas_roads shapefiles (located in the 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 make the layer the only selectable layer. (3) First, make the Texas_roads and texas_rivers layers invisible. Right click on the texas_counties layer, and then click Selection/Make This The Only Selectable Layer. Alternatively, click on the List by Selection button in the Table of Contents pane. Then, Click on the Click to toggle selectable button next to the texas_rivers and Texas_roads labels. (4) Click on Selection/Selection Options. Under Selection Tools Settings, change the selection color from blue to red and click OK. Department of Civil Engineering 3

4 (5) Now you have chosen the layer you want to select features from, and a color for the selection. Make sure that the Tools toolbar containing the Select tool is displayed in ArcMap. If it is not visible, click Customize/Toolbars/Tools on the main menu. (6) To select only one feature, click on the Select Features tool and then click on the feature you want to select. To select multiple features press and hold the Shift key, and then using the Select tool, click on all the features you want to select. (7) You can now toggle the selection by right clicking on the texas_counties layer, pointing to Selection and clicking on Switch Selection. (8) To clear the selections, click on Selection/Clear Selected Features. You can also do this using Clear Selected Features button on the Tools toolbar. Department of Civil Engineering 4

5 B. Selecting features by attributes Manual selection is useful when you know the locations of the features you want to select. However, if you have other 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. In this section of the exercise, you will select the county features whose names are Brazos, Carson, Parker, Reeves, and Refugio using the 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) 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 this could lead to errors; inserting a query by clicking on the buttons provided for building queries is better. 3) In the fields box, double-click on COUNTY_NAM. 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 that says COUNTY_NAM = Brazos. As it stands, your query can select only one feature. To select all the other counties, create statements like that described above, each separated by OR. Department of Civil Engineering 5

6 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. Department of Civil Engineering 6

7 Look at the selected features on the map. Do not clear or alter the selection; 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 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 Selection method: (3) Choose Texas_roads and texas_rivers as the Target layers and texas_counties as the Source layer. For the Spatial selection method, choose Target layer(s) features intersect the Source layer features. Make sure the Use selected features option is selected. Then, click Apply. Department of Civil Engineering 7

8 (4) Close the wizard and make the texas_counties layer invisible so that you can look at the selected features from the other two layers clearly. Department of Civil Engineering 8

9 2. GeoProcessing Wizard To learn how to use the GeoProcessing tools, you will use the data in the GeoWizard folder. The five feature classes used in this exercise are: A.shp and B.shp, which are polygon datasets C.shp, which is a line dataset, and D.shp and E.shp, which are point datasets A. Dissolve 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 can be applied to one only dataset at a time; the user has the option of defining how attributes are recalculated. Before going into the details on how to use the GeoProcessing tools, 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. 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 into a Department of Civil Engineering 9

10 single record, you will have to use the dissolve function under the geoprocessing wizard. Do this by following the directions below. (1) Click on ArcToolbox and select Data Management Tools/Generalization/Dissolve. (2) In the wizard that opens, select B under Input Features, select BOWNER under Dissolve Field(s), choose the working folder, and enter B_Dissolve as the name for the output under Output Feature Class. Click OK. Department of Civil Engineering 10

11 (4) Open the attribute tables of B and B_DISSOLVE, and note that the number of polygons has 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. 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. Department of Civil Engineering 11

12 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 symbol in the Table of Contents and choosing Square2 under Symbol in the Symbol Selector. (3) Similarly, change the symbol of layer E to the type called Circle 2. You then need to right-click on the layer E and go to Data/Export Data. Make sure that the option All features is selected next to Export and that you Use the same coordinate system as the layer s source data. Name the layer Merge and save as a shape file. (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 ArcToolbox/Data Management Department of Civil Engineering 12

13 Tools/General/Append. Under Input Datasets click setsthe drop down box, select the layer D, and in the Target Dataset select the layer Merge. Select NO TEST under Schema Type. Click OK. The layers will now be merged. Department of Civil Engineering 13

14 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 from C.shp using selected the features of B_Dissolve. Before going into the process of clipping: (1) Select John s property in 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 above B_Dissolve. Make all the layers invisible except C and B_Dissolve. (4) You then need to export the selected features. Right click on the B_Dissolve click on Data/Export Data. Make sure Selected features is chosen next to Export and name the layer JohnExport. Click OK. You are now ready to begin clipping the data: (5) Click on ArcToolbox/Analysis Tools/Extract/Clip. (6) Select C as the option for Input Features, choose JohnExport for Clip Features, enter the name for new clip shapefile as C_ClipJohn and click OK. Department of Civil Engineering 14

15 (7) A new layer will be added to the data frame. To see features of only the new layer make all layers invisible except C_ClipJohn. 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 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. Department of Civil Engineering 15

16 (1) In ArcMap, make only layers A and B visible. If the layers have the same symbol color, change the color so that they can be distinguished. Now you will intersect the layers. (2) Click on the ArcToolbox/Analysis Tools/Overlay/Intersect. (3) Select A and B layers as the Input Features and name the Output Feature Class shapefile as ABIntersect. Click OK and a new layer will be added to the data frame. 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 two polygon datasets can participate in a Department of Civil Engineering 16

17 union at a one time. Union is very similar to Intersect, but in Union the parts of the polygons that do not intersect have a value of 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 symbol color, change the color so they can be distinguished. You will now union the layers. (2) Click on the ArcToolbox/Analysis Tools/Overlay/Union. (3) Then select A and B under Input Features and name the shapefile ABUnion Click OK. A new layer will be added to the data frame. Department of Civil Engineering 17

18 Save the ArcMap file. Keep this tutorial open; you will use it for the next section of this exercise. 3. Tabular Analysis A. Joining tables Joining tables involves 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 will join an attribute table (shapefile) to a stand-alone table. Here, we will use the TX_Cities shapefile and the CityInfo table containing population information of the cities. Both files are located in the TableAnal folder. (1) Open a new ArcMap document 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 to List by Source. (2) Open the attribute table of the 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). Department of Civil Engineering 18

19 (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, select CityInfo in the next dropdown, insert a check mark for Show the attribute tables of layer in this list, choose CITY_NAME for Choose the field in the table to base the join on, and click OK. (Click No for Create Index if a warning dialog pops up.) (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 if you close the ArcMap document without saving it. Department of Civil Engineering 19

20 (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, joining tables is not a recommended option as one of the many records will be randomly picked for the join; relating tables is the solution to this scenario. Relating tables involves 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 above the counties layer in the Table of Contents. You will now relate the fields of the counties layer to the newly exported and created shapefile using the key fields (i.e., NAME_LOCAS from the TX_counties shapefile and COUNTY from the 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, select the Join layer in the next dropdown menu, choose COUNTY Department of Civil Engineering 20

21 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. (4) To see how the relate works, open the attribute table of TX_counties by right clicking on the layer and then clicking on Open Attribute Table. In the TX_counties attribute 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 Show selected records, and then click Options/Related Tables/Relate1: Join. The CityInfo table opens up in which the related rows are selected. Department of Civil Engineering 21

22 (6) 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. Department of Civil Engineering 22

23 C. Attribute statistics The statistics of the attributes of selected records for a given field are obtained using the Statistics function. (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 the 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. Department of Civil Engineering 23

24 D. Summarizing tables Summarizing tables involves aggregating all the records that have the same value for a userdefined key field into a single record. The values of other fields are aggregated based on userdefined 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 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) Find the SIZE field in the table. 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 and the filetype as dbase Table. Department of Civil Engineering 24

25 (5) Click OK. Click Yes to add the new dbf table to the map. Open the dbf table and see the fields SIZE and count_size. 4. Spatial Join Department of Civil Engineering 25

26 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 and TX_Counties shapefiles. (Note: First, you must make sure that both layers have a defined projection. Open ArcCatalog and browse to the shapefiles. Right click on each shapefile, go to Properties/XY Coordinate System. You will see that TX_Counties does not have a projection defined. Click on Import and browse to TX_Cities. Select the TX_Cities shapefile, click Add, and then Apply. Now remove TX_Counties from the ArcMap document by right clicking on it in the Table of Contents and then Remove. Add the TX_Counties shapefile back to the ArcMap document. Now, proceed with the steps below to perform a spatial join.) (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 the TX_Cities layer with the 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 Choose the layer to join to this layer, or load spatial data from disk, select the option it falls inside, choose the working folder for the output shapefile and enter the name SpatialJoin. Department of Civil Engineering 26

27 (4) Click 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. Department of Civil Engineering 27

28 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. To the data frame in this document, add C.shp from the Geowizard folder using the Add Data tool. You will now create a multiple (3) buffer of 1 km around the roads. (1) In the map, click on ArcToolbox/Analysis Tools/Proximity/Multiple Ring Buffer. (2) For the Input Features, select the C shapefile; for the Output Feature Class, type Buffer; click Save. Under distance, enter 1, then click the Plus sign, then 2, then click the Plus sign, and then 3, and then click the plus sign. In Buffer Units, click on Kilometers and make sure the Dissolve Option/All is selected. Click OK. Department of Civil Engineering 28

29 (3) A new layer is added to the data frame, which contains the buffered features. Look at its attribute table by right clicking on the new layer, and then clicking on Open Attribute Table. Move the layer C on top of the Buffer layer to get a better idea of the results. These materials may be used for research and educational purposes only. Please credit the authors and the Department of Civil Engineering,. All commercial rights reserved. Copyright 2011:. Department of Civil Engineering 29

Compilation of GIS data for the Lower Brazos River basin

Compilation of GIS data for the Lower Brazos River basin Compilation of GIS data for the Lower Brazos River basin Prepared by Francisco Olivera, Ph.D., P.E., Srikanth Koka, and Lauren Walker Department of Civil Engineering October 2, 2006 Contents: Brief Overview

More information

Spatial Analysis with Raster Datasets

Spatial Analysis with Raster Datasets Spatial Analysis with Raster Datasets Francisco Olivera, Ph.D., P.E. Srikanth Koka Lauren Walker Aishwarya Vijaykumar Keri Clary Department of Civil Engineering April 21, 2014 Contents Brief Overview of

More information

Select the Parks within Forest Acres

Select the Parks within Forest Acres Select the Parks within Forest Acres TASKS RESULT 1. Add the county boundary, municipalities and parks (pts.) layers to your map 2. Save your map (.mxd) to your desktop Your map should look something like

More information

Explore some of the new functionality in ArcMap 10

Explore some of the new functionality in ArcMap 10 Explore some of the new functionality in ArcMap 10 Scenario In this exercise, imagine you are a GIS analyst working for Old Dominion University. Construction will begin shortly on renovation of the new

More information

Creating a Smaller Data Set from a Larger Data Set Vector Data

Creating a Smaller Data Set from a Larger Data Set Vector Data Creating a Smaller Data Set from a Larger Data Set Vector Data Written by Barbara Parmenter, revised by Carolyn Talmadge January 16, 2015 USING THE SELECTION METHOD QUICK METHOD BY CREATING A LAYER FILE...

More information

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4 Data Assembly, Part II GIS Cyberinfrastructure Module Day 4 Objectives Continuation of effective troubleshooting Create shapefiles for analysis with buffers, union, and dissolve functions Calculate polygon

More information

GIS Basics for Urban Studies

GIS Basics for Urban Studies GIS Basics for Urban Studies Date: March 21, 2018 Contacts: Mehdi Aminipouri, Graduate Peer GIS Faciliator, SFU Library (maminipo@sfu.ca) Keshav Mukunda, GIS & Map Librarian Librarian for Geography (kmukunda@sfu.ca)

More information

INTRODUCTION TO GIS WORKSHOP EXERCISE

INTRODUCTION TO GIS WORKSHOP EXERCISE 111 Mulford Hall, College of Natural Resources, UC Berkeley (510) 643-4539 INTRODUCTION TO GIS WORKSHOP EXERCISE This exercise is a survey of some GIS and spatial analysis tools for ecological and natural

More information

VECTOR ANALYSIS: QUERIES, MEASUREMENTS & TRANSFORMATIONS

VECTOR ANALYSIS: QUERIES, MEASUREMENTS & TRANSFORMATIONS VECTOR ANALYSIS: QUERIES, MEASUREMENTS & TRANSFORMATIONS GIS Analysis Winter 2016 Spatial Analysis Operations performed on spatial data that add value Can reveal things that might otherwise be invisible

More information

Delineating the Stream Network and Watersheds of the Guadalupe Basin

Delineating the Stream Network and Watersheds of the Guadalupe Basin Delineating the Stream Network and Watersheds of the Guadalupe Basin Francisco Olivera Department of Civil Engineering Texas A&M University Srikanth Koka Department of Civil Engineering Texas A&M University

More information

Getting to Know ModelBuilder

Getting to Know ModelBuilder Getting to Know ModelBuilder Offered by Shane Bradt through the UNH Cooperative Extension Geospatial Technologies Training Center Developed by Sandy Prisloe and Cary Chadwick at the Geospatial Technology

More information

Introduction to GIS & Mapping: ArcGIS Desktop

Introduction to GIS & Mapping: ArcGIS Desktop Introduction to GIS & Mapping: ArcGIS Desktop Your task in this exercise is to determine the best place to build a mixed use facility in Hudson County, NJ. In order to revitalize the community and take

More information

Basic Tasks in ArcGIS 10.3.x

Basic Tasks in ArcGIS 10.3.x Basic Tasks in ArcGIS 10.3.x This guide provides instructions for performing a few basic tasks in ArcGIS 10.3.1, such as adding data to a map document, viewing and changing coordinate system information,

More information

ArcMap and Google Earth

ArcMap and Google Earth ArcMap and Google Earth Prepared by Andrew Hobby CVEN 658 November 25, 2008 Contents: Brief Overview of Google Earth Goals of Exercise Computer and Data Requirements Procedure: 1. Creating a KML File 2.

More information

Create a personal geodatabase

Create a personal geodatabase Create a personal geodatabase To create a personal geodatabase that corresponds to the same release as the ArcGIS for Desktop client you are using, follow these steps: 1. In ArcCatalog, right-click the

More information

Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data

Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data Imagine for a moment that digital cartographic databases were a perfect analog of the paper map. Once you digitized

More information

Exercise 1: Getting to know ArcGIS

Exercise 1: Getting to know ArcGIS The Scenario You are working for the California Visitor s Commission. You have been asked to prepare a map of California for several dignitaries from out of the country. Your map will need to include enough

More information

Step by Step GIS. Section 1

Step by Step GIS. Section 1 Step by Step GIS Section 1 Contact the web page given below for the data required to do the exercises (http://www.pasda.psu.edu/default.asp) Before beginning the tutorials please visit the Preparation

More information

USING 2001 CENSUS DATA IN ArcMap 8.2

USING 2001 CENSUS DATA IN ArcMap 8.2 USING 2001 CENSUS DATA IN ArcMap 8.2 This is a guide to mapping 2001 Census data in ArcMap using age and sex profile data for Toronto at the census tract level. Importing boundary files, importing census

More information

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment This activity is designed to introduce you to the Geography Lab and to the ArcMap software within the lab environment. Before

More information

LAB 1: Introduction to ArcGIS 8

LAB 1: Introduction to ArcGIS 8 LAB 1: Introduction to ArcGIS 8 Outline Introduction Purpose Lab Basics o About the Computers o About the software o Additional information Data ArcGIS Applications o Starting ArcGIS o o o Conclusion To

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap Harvard University Introduction to ArcMap Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 1: Basic Mapping in ArcMap Individual files (lab instructions,

More information

Data Assembling Topics:

Data Assembling Topics: Topics: 1. GPX to Shape file 2. Data conversion with FME 3. Create a polygon feature 4. Merging /Appending data into a new dataset 5. Reproject data from one coordinate system to another 6. Data clipping

More information

Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use

Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use Lab 1: Exploring ArcMap and ArcCatalog In this lab, you will explore the ArcGIS applications ArcCatalog and ArcMap. You will learn how to use ArcCatalog to find maps and data and how to display maps in

More information

Appendix 2: Random Plots Workbook: Unstratified Sample

Appendix 2: Random Plots Workbook: Unstratified Sample Appendix 2: Random Plots Workbook: Unstratified Sample These instructions will help users of all skill levels create a random sample of i-tree Eco plot centers, plot areas, and the associated i-tree Eco-required

More information

Geocoding Address Data

Geocoding Address Data Geocoding Address Data First, you need to download the dataset for this exercise from out web server at http://www.library.yale.edu/mapcoll/beta/files/data/geocode_data.zip. Create a folder (use your initials

More information

How to calculate population and jobs within ½ mile radius of site

How to calculate population and jobs within ½ mile radius of site How to calculate population and jobs within ½ mile radius of site Caltrans Project P359, Trip Generation Rates for Transportation Impact Analyses of Smart Growth Land Use Projects SECTION PAGE Population

More information

Priming the Pump Stage II

Priming the Pump Stage II Priming the Pump Stage II Modeling and mapping concentration with fire response networks By Mike Price, Entrada/San Juan, Inc. The article Priming the Pump Preparing data for concentration modeling with

More information

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Practical: Creating and Editing Shapefiles Using Straight, AutoComplete and Cut Polygon Tools Use ArcCatalog to copy data files from:

More information

Geocoding Address Data

Geocoding Address Data Preparing for the tutorial Geocoding Address Data First, you need to download the dataset for this exercise from out web server at http://www.library.yale.edu/mapcoll/files/data/geocode_data.zip. Create

More information

The ArcMap Interface and Using Basic ArcMap Analysis Tools to Create a Map

The ArcMap Interface and Using Basic ArcMap Analysis Tools to Create a Map The ArcMap Interface and Using Basic ArcMap Analysis Tools to Create a Map *You will need a computer with ESRI ArcGIS Desktop version 9.3 or higher installed* Data Download 1. Save the zipped folder with

More information

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment

Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment Geography 281 Mapmaking with GIS Project One: Exploring the ArcMap Environment This activity is designed to introduce you to the Geography Lab and to the ArcMap software within the lab environment. Please

More information

Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS

Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS Tutorial 1: Finding and Displaying Spatial Data Using ArcGIS This tutorial will introduce you to the following: Websites where you may browse to find geospatial information Identifying spatial data, usable

More information

Exercise 1: An Overview of ArcMap and ArcCatalog

Exercise 1: An Overview of ArcMap and ArcCatalog Exercise 1: An Overview of ArcMap and ArcCatalog Introduction: ArcGIS is an integrated collection of GIS software products for building a complete GIS. ArcGIS enables users to deploy GIS functionality

More information

Chapter 9. Attribute joins

Chapter 9. Attribute joins Chapter 9 Spatial Joins 9-1 Copyright McGraw-Hill Education. Permission required for reproduction or display. Attribute joins Recall that Attribute joins: involve combining two attribute tables together

More information

Intro to GIS (requirements: basic Windows computer skills and a flash drive)

Intro to GIS (requirements: basic Windows computer skills and a flash drive) Introduction to GIS Intro to GIS (requirements: basic Windows computer skills and a flash drive) Part 1. What is GIS. 1. System: hardware (computers, devices), software (proprietary or free), people. 2.

More information

Ex. 4: Locational Editing of The BARC

Ex. 4: Locational Editing of The BARC Ex. 4: Locational Editing of The BARC Using the BARC for BAER Support Document Updated: April 2010 These exercises are written for ArcGIS 9.x. Some steps may vary slightly if you are working in ArcGIS

More information

Geography 104 Instructors: Judd Curran & Mark Goodman. LAB EXERCISE #3 Data Analysis - Buffering (25pts)

Geography 104 Instructors: Judd Curran & Mark Goodman. LAB EXERCISE #3 Data Analysis - Buffering (25pts) Instructors: Judd Curran & Mark Goodman Name: LAB EXERCISE #3 Data Analysis - Buffering (25pts) Transformations in GIS are methods that transform GIS objects and databases into more useful products using

More information

In this exercise we will:

In this exercise we will: Intro to GIS Exercise #3 TOC Data frame visual hierarchy / Select by Attribute / Select by Location / Geoprocessing IUP Dept. of Geography and Regional Planning Dr. Richard Hoch Please prepare answers

More information

Exercise 3: Creating a Geodatabase

Exercise 3: Creating a Geodatabase Exercise 3: Creating a Geodatabase Introduction: A database (DB) is an organized collection of data, that we can visualize as being a group of tables. An example of a simple database can be seen below:

More information

George Mason University Department of Civil, Environmental and Infrastructure Engineering

George Mason University Department of Civil, Environmental and Infrastructure Engineering George Mason University Department of Civil, Environmental and Infrastructure Engineering Dr. Celso Ferreira Prepared by Lora Baumgartner December 2015 Revised by Brian Ross July 2016 Exercise Topic: Getting

More information

_Tutorials. Arcmap. Linking additional files outside from Geodata

_Tutorials. Arcmap. Linking additional files outside from Geodata _Tutorials Arcmap Linking additional files outside from Geodata 2017 Sourcing the Data (Option 1): Extracting Data from Auckland Council GIS P1 First you want to get onto the Auckland Council GIS website

More information

Polygon Analysis. Download and unzip the personal geodatabase polygon_analysis_lab.mdb from.

Polygon Analysis. Download and unzip the personal geodatabase polygon_analysis_lab.mdb from. NRM435 Spring 2019 Page 1 of 11 Polygon Analysis Download and unzip the personal geodatabase polygon_analysis_lab.mdb from /data/ The personal geodatabase contains five feature datasets.create an Arcmap

More information

Answer the following general questions: 1. What happens when you right click on an icon on your desktop? When you left double click on an icon?

Answer the following general questions: 1. What happens when you right click on an icon on your desktop? When you left double click on an icon? Name: Date: June 27th, 2011 GIS Boot Camps For Educators Practical: Explore ArcGIS 10 Desktop Tools and functionality Day_1 Lecture 1 Sources: o ArcGIS Desktop help o ESRI website o Getting to Know ArcGIS

More information

Calculate a Distance Matrix of Locations along River Network

Calculate a Distance Matrix of Locations along River Network Calculate a Distance Matrix of Locations along River Network These instructions enable you to measure the length of line segments between points, which is much more useful than simple straight-line distances

More information

Basic Queries Exercise - Haiti

Basic Queries Exercise - Haiti Basic Queries Exercise - Haiti Written by Barbara Parmenter, revised by Carolyn Talmadge on September 18, 2016 SETTING UP... 1 WHERE ARE THE HOSPITALS THAT ARE STILL OPERATING? (SELECT BY ATTRIBUTE )...

More information

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas.

GIS LAB 1. Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. GIS LAB 1 Basic GIS Operations with ArcGIS. Calculating Stream Lengths and Watershed Areas. ArcGIS offers some advantages for novice users. The graphical user interface is similar to many Windows packages

More information

1. Start ArcMap by going to the Start menu > All Programs > ArcGIS > ArcMap.

1. Start ArcMap by going to the Start menu > All Programs > ArcGIS > ArcMap. Learning ArcGIS: Introduction to ArcMap 10.1 The Map Document Feature Manipulation Navigating ArcMap Map Documents, Layers, and Features Shapes, Location, and Attribute Data Symbology Zoom, Pan and Map

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 5: Queries, Joins: Spatial and Non-spatial 1.0 Getting Census data 1. Go to the American Factfinder

More information

Module 7 Raster operations

Module 7 Raster operations Introduction Geo-Information Science Practical Manual Module 7 Raster operations 7. INTRODUCTION 7-1 LOCAL OPERATIONS 7-2 Mathematical functions and operators 7-5 Raster overlay 7-7 FOCAL OPERATIONS 7-8

More information

Workshop #1 - Introduction to ESRI ARCGIS. Exercise # 1 - Creating a Simple Map in ArcMap

Workshop #1 - Introduction to ESRI ARCGIS. Exercise # 1 - Creating a Simple Map in ArcMap Workshop #1 - Introduction to ESRI ARCGIS Exercise # 1 - Creating a Simple Map in ArcMap In this exercise you are introduced to the ArcMap interface and some of the basic skills necessary to create simple

More information

A Second Look at DEM s

A Second Look at DEM s A Second Look at DEM s Overview Detailed topographic data is available for the U.S. from several sources and in several formats. Perhaps the most readily available and easy to use is the National Elevation

More information

Lab 7: Tables Operations in ArcMap

Lab 7: Tables Operations in ArcMap Lab 7: Tables Operations in ArcMap What You ll Learn: This Lab provides more practice with tabular data management in ArcMap. In this Lab, we will view, select, re-order, and update tabular data. You should

More information

GIS Fundamentals: Supplementary Lessons with ArcGIS Pro

GIS Fundamentals: Supplementary Lessons with ArcGIS Pro Station Analysis (parts 1 & 2) What You ll Learn: - Practice various skills using ArcMap. - Combining parcels, land use, impervious surface, and elevation data to calculate suitabilities for various uses

More information

Introduction to Geospatial Technology Lab Series. Lab: Basic Geospatial Analysis Techniques

Introduction to Geospatial Technology Lab Series. Lab: Basic Geospatial Analysis Techniques Introduction to Geospatial Technology Lab Series Lab: Basic Geospatial Analysis Techniques Document Version: 2012-08-24 Lab Author: Richard Smith Organization: Copyright 2003-2012 Center for Systems Security

More information

Lab Exercise 6: Vector Spatial Analysis

Lab Exercise 6: Vector Spatial Analysis Massachusetts Institute of Technology Department of Urban Studies and Planning 11.520: A Workshop on Geographic Information Systems 11.188: Urban Planning and Social Science Laboratory Lab Exercise 6:

More information

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcGIS Procedures NUMBER OPERATION APPLICATION: TOOLBAR 1 Import interchange file to coverage 2 Create a new 3 Create a new feature dataset 4 Import Rasters into a 5 Import tables into a PROCEDURE Coverage

More information

SilvAssist 3.5 Instruction Manual Instruction Manual for the SilvAssist Toolbar For ArcGIS. Version 3.5

SilvAssist 3.5 Instruction Manual Instruction Manual for the SilvAssist Toolbar For ArcGIS. Version 3.5 Instruction Manual for the SilvAssist Toolbar For ArcGIS Version 3.5 1 2 Contents Introduction... 5 Preparing to Use SilvAssist... 6 Polygon Selection... 6 Plot Allocator... 7 Requirements:... 7 Operation...

More information

Working with Events in ArcGIS 8.2

Working with Events in ArcGIS 8.2 Working with Events in ArcGIS 8.2 This tutorial is a companion to the article, Understanding Dynamic Segmentation: Working with Events in ArcGIS in the October December 2002 issue of ArcUser magazine.

More information

Joining Data Tables to SABINS Data

Joining Data Tables to SABINS Data Joining Data Tables to SABINS Data September 2011 This guide shows users how to join the Attendance Boundary Information System (SABINS) data to Census 2010 tabular data, Common Core of Data (CCD), and

More information

Tutorial 1 Exploring ArcGIS

Tutorial 1 Exploring ArcGIS Tutorial 1 Exploring ArcGIS Before beginning this tutorial, you should make sure your GIS network folder is mapped on the computer you are using. Please refer to the How to map your GIS server folder as

More information

GEOGRAPHIC INFORMATION SYSTEMS Lecture 17: Geoprocessing and Spatial Analysis

GEOGRAPHIC INFORMATION SYSTEMS Lecture 17: Geoprocessing and Spatial Analysis GEOGRAPHIC INFORMATION SYSTEMS Lecture 17: and Spatial Analysis tools are commonly used tools that we normally use to prepare data for further analysis. In ArcMap, the most commonly used tools appear in

More information

START>PROGRAMS>ARCGIS>

START>PROGRAMS>ARCGIS> Department of Urban Studies and Planning Spring 2006 Department of Architecture Site and Urban Systems Planning 11.304J / 4.255J GIS EXERCISE 2 Objectives: To generate the following maps using ArcGIS Software:

More information

Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams.

Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams. GIS LAB 3 Working with Attribute Data and Clipping Spatial Data. Determining Land Use and Ownership Patterns associated with Streams. One of the primary goals of this course is to give you some hands-on

More information

STUDENT PAGES GIS Tutorial Treasure in the Treasure State

STUDENT PAGES GIS Tutorial Treasure in the Treasure State STUDENT PAGES GIS Tutorial Treasure in the Treasure State Copyright 2015 Bear Trust International GIS Tutorial 1 Exercise 1: Make a Hand Drawn Map of the School Yard and Playground Your teacher will provide

More information

3.2 Clipping Data Layers

3.2 Clipping Data Layers Advanced Data Management Clipping Data Layers 3.2.1 3.2 Clipping Data Layers Many times you will want to use a smaller part of a layer (like only the roads in one school district or town, not the whole

More information

Extracting Inventory History Information from the Land & Resource Data Warehouse (LRDW)

Extracting Inventory History Information from the Land & Resource Data Warehouse (LRDW) Extracting Inventory History Information from the Land & Resource Data Warehouse (LRDW) The following instructions will illustrate how to extract inventory history information from the Land & Resource

More information

COASTAL GIS APPLICATION

COASTAL GIS APPLICATION 6/27/2005 Coastal GIS Applications -- Town of Mosel (ArcView 9.x) Page 1 COASTAL GIS APPLICATION Coastal Erosion and Shoreland Development Regulation Town of Mosel, Wisconsin Updated Summer 2005 August

More information

Working with International Census Data in GIS

Working with International Census Data in GIS Working with International Census Data in GIS Updated February 23, 2015 Table of Contents SETTING UP... 1 DATA SOURCES... 1 TABULAR CENSUS DATA... 2 2001 Tabular Census Data... 5 GEOGRAPHIC DATA... 5 JOINING

More information

A Hands-on Experience with Arc/Info 8 Desktop

A Hands-on Experience with Arc/Info 8 Desktop Demo of Arc/Info 8 Desktop page 1 of 17 A Hands-on Experience with Arc/Info 8 Desktop Prepared by Xun Shi and Ted Quinby Geography 377 December 2000 In this DEMO, we introduce a brand new edition of ArcInfo,

More information

This support note will discuss several methods of creating no spray zones for Sentinel GIS>

This support note will discuss several methods of creating no spray zones for Sentinel GIS> Reason Sentinel Adulticiding support a polygon no spray layer. Adulticiding mobile software warns the driver when they are approaching a no spray zone so they can turn off the sprayer. Because no spray

More information

GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I)

GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I) DEPARTMENT OF GEOGRAPHY HONG KONG BAPTIST UNIVERSITY Prof. Q. Zhou GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I) Objectives Before we can use GIS for any analysis

More information

Making ArcGIS Work for You. Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO

Making ArcGIS Work for You. Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO Making ArcGIS Work for You Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO 1 Topics Using ArcMap beyond the Toolkit buttons GIS data formats Attributes and what you can do with them Calculating Acres

More information

Editing Parcel Fabrics Tutorial

Editing Parcel Fabrics Tutorial Editing Parcel Fabrics Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Tutorial: Getting started with parcel fabric editing...................... 3 Tutorial: Creating new parcels

More information

Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations,

Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations, Welcome to NR402 GIS Applications in Natural Resources. This course consists of 9 lessons, including Power point presentations, demonstrations, readings, and hands on GIS lab exercises. Following the last

More information

As a GIS technician, your job will be to take the available data and develop suitability maps for the site.

As a GIS technician, your job will be to take the available data and develop suitability maps for the site. Study Guide: Geographic Informations Systems Area: Land-use Analysis with ArcView 3.x Subject: Using Soil maps to Assess site suitability Objectives: Upon completing this study guide you should be able

More information

Key Terms. Attribute join Target table Join table Spatial join

Key Terms. Attribute join Target table Join table Spatial join Key Terms Attribute join Target table Join table Spatial join Lect 10A Building Geodatabase Create a new file geodatabase Map x,y data Convert shape files to geodatabase feature classes Spatial Data Formats

More information

Linear Referencing in ArcGIS. GIS by ESRI

Linear Referencing in ArcGIS. GIS by ESRI Linear Referencing in ArcGIS GIS by ESRI Copyright 00 ESRI All rights reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

Mapping Tabular Data

Mapping Tabular Data Mapping Tabular Data ArcGIS Desktop 10.1 Instructional Guide Kim Ricker GIS/Data Center Head (713) 348-5691 Jean Niswonger GIS Support Specialist (713) 348-2595 This guide was created by the staff of the

More information

GIS Virtual Workshop: Buffering

GIS Virtual Workshop: Buffering This workshop will teach the different methods of buffering data. They will include: Basic buffering of data Merging buffering zones Clipping the buffer Concentric rings around the object You will find

More information

Integrating CAD Data with ArcGIS

Integrating CAD Data with ArcGIS Integrating CAD Data with ArcGIS Agenda An Overview of CAD Drawings CAD Data Structure in ArcGIS Visualization Georeferencing Data Conversion ArcGIS for AutoCAD Q & A CAD Drawings - Overview Widely used

More information

GPS TO GIS EXERCISE (30 PTS)

GPS TO GIS EXERCISE (30 PTS) GPS TO GIS EXERCISE (30 PTS) This exercise will allow you to demonstrate your cumulative knowledge of using a GPS receiver to collect data with locational information, downloading this data to a desktop

More information

George Mason University Department of Civil, Environmental and Infrastructure Engineering

George Mason University Department of Civil, Environmental and Infrastructure Engineering George Mason University Department of Civil, Environmental and Infrastructure Engineering Dr. Celso Ferreira Prepared by Lora Baumgartner December 2015 Revised by Brian Ross July 2016 Exercise Topic: GIS

More information

Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools

Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools Prepared by Venkatesh Merwade School of Civil Engineering, Purdue University vmerwade@purdue.edu January 2018 Objective The

More information

1. Preparing the base map. 2. Creating new shapefiles. Collecting Spatial Data by Digitizing

1. Preparing the base map. 2. Creating new shapefiles. Collecting Spatial Data by Digitizing Topics: 1. Preparing the base map 2. Creating new shapefiles 3. Digitizing Features 4. Modifying Existing Features 5. Adding Data Fields and editing Feature Attributes 6. Displaying and Labelling features

More information

Announcements. Data Sources a list of data files and their sources, an example of what I am looking for:

Announcements. Data Sources a list of data files and their sources, an example of what I am looking for: Data Announcements Data Sources a list of data files and their sources, an example of what I am looking for: Source Map of Bangor MEGIS NG911 road file for Bangor MEGIS Tax maps for Bangor City Hall, may

More information

GIS Intro for G&G 304

GIS Intro for G&G 304 Geog_And_Epid.Doc Page 1 of 21 GIS Intro for G&G 304 Objectives By the end of this tutorial, you should understand: How to Open spatial data in ArcMap How to create a spatial data layer from tabular coordinates

More information

Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2

Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2 Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2 Practical 2 Learning objectives: To work with a vector base map within a GIS and overlay point data. To practise using Ordnance Survey mapping

More information

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch User Guide for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch allows the user to quickly create, or sketch, features in ArcMap using easy-to-use

More information

Greenville County Internet Mapping System User s Guide

Greenville County Internet Mapping System User s Guide Greenville County Internet Mapping System User s Guide Version 2.0 Greenville County Geographic Information Systems May 30, 2006 Table of Contents NAVIGATING TO THE ONLINE MAPPING APPLICATIONS...- 3 -

More information

Geocoding Reference USA data in ArcMap 9.3

Geocoding Reference USA data in ArcMap 9.3 Tufts GIS Tip Sheet Geocoding Reference USA data in ArcMap 9.3 Written by Barbara Parmenter Revised 3/1/2011 In this exercise, you will map businesses or services for a town in the Boston metropolitan

More information

A Practical Guide to Using QGIS

A Practical Guide to Using QGIS A Practical Guide to Using QGIS 1.1 INTRODUCTION Quantum GIS (QGIS) is a useful mapping software that enables the compilation and displaying of spatial data in the form of a map. Gaining experience in

More information

8 Querying and Selecting Data

8 Querying and Selecting Data 8 Querying and Selecting Data In this chapter, we will cover the following recipes: ff ff ff ff ff Constructing proper attribute query syntax Creating feature layers and table views Selecting features

More information

Downloading 2010 Census Data

Downloading 2010 Census Data Downloading 2010 Census Data These instructions cover downloading the Census Tract polygons and the separate attribute data. After that, the attribute data will need additional formatting in Excel before

More information

Guide to Mapping Website (Public) December 2016 GC_236594

Guide to Mapping Website (Public) December 2016 GC_236594 Guide to Mapping Website (Public) December 2016 GC_236594 Table of Contents Guide to Mapping Website (Public)... 1 December 2016... 1 Quick Start... 3 Map Layers... 4 How do I?... 5 Draw on the Map...

More information

GIS Workshop Spring 2016

GIS Workshop Spring 2016 1/ 14 GIS Geographic Information System. An integrated collection of computer software and data used to view and manage information about geographic places, analyze spatial relationships, and model spatial

More information

Selecting by Attributes and Location in ArcGIS Pro

Selecting by Attributes and Location in ArcGIS Pro Chapter 7 Selecting by Attributes and Location in ArcGIS Pro Skills you will learn: This tutorial covers selecting features in ArcGIS Pro. If you are unfamiliar with the basics of the ArcGIS Pro user interface,

More information

Geography 281 Map Making with GIS Project Two: Map Design Issues in ArcMap

Geography 281 Map Making with GIS Project Two: Map Design Issues in ArcMap Geography 281 Map Making with GIS Project Two: Map Design Issues in ArcMap This activity provides an introduction to the map design process. It takes you through a typical sequence from the initial decision

More information

CE 549 Lab 1 - Linking Streamflow Data to a Gauging Station

CE 549 Lab 1 - Linking Streamflow Data to a Gauging Station CE 549 Lab 1 - Linking Streamflow Data to a Gauging Station Prepared by Venkatesh Merwade Lyles School of Civil Engineering, Purdue University vmerwade@purdue.edu January 2018 Objective The objective of

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2011 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information