Lab 8: Spatial Selection, Importing, Joining Tables-QGIS

Size: px
Start display at page:

Download "Lab 8: Spatial Selection, Importing, Joining Tables-QGIS"

Transcription

1 Lab 8: Spatial Selection, Importing, Joining Tables-QGIS What You ll Learn: This lesson introduces spatial selection, importing text files into an ArcMap table, combining rows, and navigating tricky joins. The work is organized as two small projects, the first with step-by-step instructions, and the second less so. You should have read, and be ready to refer to Chapters 7 and 8 in the GIS Fundamentals text. This project requires synthesis of what you ve learned up until now. Data are in the L8\ directory, separated by projects. What You ll Produce: Three maps, one of U.S. NASS data, one of California county income, and one of California counties with parks or forests. Project 1: Select by Proximity and Adjacency Work in GIS often involves analyzing the locations of features in relation to other features. Two types of relationships are proximity (how close features are) and adjacency (features that share the same boundary). Finding points near lines Open a new data frame, and add the data from L8\Project1 the data:-twocity_mercator.shp, -35W_Mercator_Q.shp, -USA_48_Mercator.shp. Ensure ftools plug-in is installed and enabled Choose Vector Spatial Query from main menu (see figure or toolbar icon. Video: Lab 8 (Select Adjacent) Specify to: - select source features from twocity_mercator -Where the feature Intersects -Reference feature of 35w_MercatorQ Then click Apply, and then Close. 1

2 On the Map, the point that represents the city of Minneapolis should be yellow, which means it has been selected. We often use this type of operation prior to some other analyses. For example, we may wish to locate a shipping center on a major highway. If we wished to find a location near a major highway we would need to add a proximity value to the search by buffering one of the features (this will be covered in the next lab exercise). Now, we will find all states (polygons) that are intersected by 35W. First, clear the previously selected features by View->Select-> Deselect from all Layers You could also use the toolbar button Perform another Spatial Query (as above), with - The Target Layer(s) as 35w_MercatorQ. - Source layer as USA_48_Mercator. - Select Where the feature Intersects. - Then Apply and OK. The six polygons representing states that intersect the 35W should be selected, similar to the figure to the right. Selecting by adjacency Now we ll select polygons that are adjacent to a selected set of polygons, in this case, all states that share a boundary with a selected set of states. -First, Clear Selected Features (as described above). - Select the USA_48_Mercator layer on the Layers panel. Then activate the Select Single Feature (See next page, it is a tool on the top menu bar) 2

3 The Select Single Feature allows selection of one state; the other Select cursors allow selection of groups of states by left clicking and dragging the cursor. For now, just select one state. For the example below, select Colorado, a rectangular state in approximately the middle of the USA., The initially selected state (Colorado) is shown at the left, now switch to the Select Features by Rectangle and carefully drag a rectangle just slightly larger than Colorado Target feature, Colorado Adjacent selected set of features Project 2: Adding a Text Table, Joining to a Shapefile This project introduces something quite common, joining ASCII tabular data with a shapefile. Here, we will combine a text file on corn production for US counties with a county shapefile, but there are many other types of tabular data that are available as text files, summarized on a county basis, including population, voting, education, income, crime, air pollution, and many other social, political, and environmental data. Here we import a text file, convert it to a QGIS compatible table, and edit the table, deleting columns, creating join items, and combining rows before joining it with a polygon shape file. These are all common operations when ingesting tabular data. Start QGIS, and add lwr48.shp from the L8\Project2\ subdirectory. 3

4 Now add the text file cnty26.csv to this data view. Select No geometry (attribute only table) then accept all the defaults when Creating a Layer from a Delimited Text File. Right click on the layer and select Open the Attribute Table for viewing. Video: Lab 8 (Adding Text) This file contains 1996 seed corn production, in bushels, for counties in the United States. These data were downloaded from the National Agricultural Statistical Service website, and we re most interested in the columns: Stfips: the state Federal Information Processing System (FIPS) code, CoFips: county FIPS code, Harvested: the acres harvested for a given yield category in a county, Yield: Bushels per acre harvested for the yield category, Production: Total bushels produced (yield times harvested) for the given yield level. Unfortunately, we can t directly edit the.csv file, so we must convert it to a DBF file (also called dbase table). Close the table viewer. Select the cnty26 layer in the Layers window, right click and Save As and save all records to the Project2 subdirectory, naming it something like raw_corn_dat. Select DBF file as the Format. Check the box for Add saved file to the map Then remove the cnty26.csv from the data frame, to reduce clutter. Open the raw_corn_dat attribute table, and delete all the columns except the following: Stfips, CoFips, Harvested, Yield, and Production. 4

5 Toggle the editing button (to start editing), Delete columns by left clicking Delete Attributes button then select the all the columns you wish to delete and select OK. Untoggle the editing button and save your changes to raw_corn_dat.dbf Close the Attribute table. We now want to join this data with the county shapefile, lwr48.shp. Unfortunately, there are two problems. First, we don t have a ready-made key for the join. There is no column that maps cleanly from the raw_corn_dat.dbf file to the lwr48 shapefile. Open the Attribute Table for the lwr48 shapefile. Notice that lwr48.shp also has the county and state FIPS codes, in the COUNTY and STATE columns, respectively. Each state has a unique FIPS code, and each county within a STATE has a unique code. If we combine the STATE-COUNTY codes, we can create a unique ID for each county in the country. Toggle the editing button (to start editing), Add columns by left clicking New Column button then create a new column. Name this column sta_count and assign the Type to be a Whole number (integer), with at width of 8 (precision). Use the Field calculator button to assign sta_count a value according to the formula: "STATE" * "COUNTY" Remember to Update existing field Multiplying the STATE by and adding to COUNTY creates a unique 5-digit code, with the value for STATE in the first two digits, and the value for COUNTY in the next three digits. Untoggle the editing button and save your changes to lwr48.shp. 5

6 Open the raw_corn_dat.dbf file, add a sta_count column similar to the one in lwr48, and create a value for a new column using the field calculator, according to: Stfips * CoFips Now, sort the raw_corn_dat table in ascending order according to this new column, by right clicking/selecting in the sta_count column. You should have a window that looks something like the figure above, with the sta_count shown at the far right of the table. The next step requires one of the measurement fields to be summarized. However you must change the format of the field from Integer to Real for the summary to work. Chose you field Harvested, Yield or Production and convert it to Real. This is done by using the Field calculator as show to the right. I used Harvested but you could use either of the measurement fields. I named my field Harvest_R Untoggle the editing button and save your changes to raw_corn_dat.dbf 6

7 Now select Plugins and ensure you have the Group Stats plugin installed. It should have a black check beside the Group Stats line. Next find the Group Stats toolbar. It is most likely in the extreme lower left. Select Group Stats and select raw_corn_dat in the Layers dropdown and drag sta_count to the Rows box, the drag sum and Harvest_R to the Value box. (See example below) Press calculate. Your output should appear as shown to the right. Next select Data and Save All to CSV file. Name it SumCorn.csv Now add the SumCorn to you Layers panel with the Create a Layer from a Delimited Text File. Make sure you check the no geometry (attribute only table) option and select Custom delimiters. (See below) 7

8 This adds the SumCorn to your Layers Panel. Open the SumCorn file and sort ascending by sta_count. Your summary field should be names None. We will rename this field later for now just remember you summarized measurement field is called None. Check to see that the sta_count with a value of has a None value of 5700 (this assumes you use Harvested as the measurement field. If not check back and verify the accuracy of your summarized field; hint sort raw_corn_dat by sta_count and add up the values for the value.) Remove the raw_corn_dat file from the map; we don t need it any more. Now, join the summary table you just created to the lwr48.shp file (right click on lwr48.shp in Layers panel, select Layer Properties of lwr48.shp, then Joins. Use the green Plus button to begin the join. The join layer is Sum_Crop, the join fields and target fields are sta_count Select OK and then Apply, OK Examine the lwr48.shp file to see the new columns added to the right. Note there are some counties that do not grow corn. They will not have any joined data from the Sum_Crop file. Your lwr48.shp file should look like this: 8

9 We want to further process this combined data. Because many operations are restricted on joined files, it is best to save a copy to a new file. Right click on the lw48.shp in the Layers panel then left click Save as and name and save the file appropriately, something like US_corn.shp. Make sure you select ESRI Shapefile for the format. Add this new file to your data frame, and remove the lwr48 file and summary production tables. Open the Attribute table, toggle Editing, Select all the records where SumCorn_No 1 >= 0 then, Invert the Selection (see button) Use the Field calculator to assign a value of 0 to all the records that have NULL values. Clear selected features. Now, prepare your data for output. First, change the Projection (CRS) of the Project to EPSG: which is: Projected->Albers Equal Area, USA_Contiguous_Albers_Equal_Area_Conic. Symbolize the US_corn.shp file, using the Layer Properties, Graduated, use SumCorn_No. Use a gradient color ramp between two distinct colors (below from RdYlGn). Specify about 10 classes in a Natural Breaks scheme. Right click on the first range and select Symbol, then Simple fill then No Pen for the border style, shown to the above. Select Ok, Apply, OK. 9

10 Refine the display of the labels of the Quanties of Sum_No (really Sum Harvest) again by right clicking on the first range manually updating the label for each of the 10 categories. Select Ok, Apply and OK to complete the changes to your Style. Add the states.shp with a hollow symbology and dark outline color. Create an appropriately annotated layout, with title, north arrow, name, legend, and other descriptive elements, and produce and submit a pdf of the layout. 10

11 Project 3 Your third task is to produce two (2) maps on the same layout, one showing average income by county in California, and a second map showing counties with state parks or forests. These instructions will be less detailed than previous lessons, as we omit most steps we ve covered in previous lessons. The goal is for you to synthesize these previously-taught tools on your own. Start a new blank ArcMap project. Do not add any layer yet. Maps must be produced in a UTM Zone 11, NAD83 projection (EPSG: 26911). The original data has map units of decimal degrees. Use QGIS to reproject the data, to the UTM coordinate system. Video: Lab 8 (Reproject) Data for this project are in L8\project3\ subdirectory. California county boundaries are in Cal.shp. After you reproject the Cal.shp file add the reprojected layer to a NEW Project. This will eliminate the on-the-fly-reprojection for the rest of the exercise. Income.dbf is a database file that lists average per capita income by county; add this to file to the Income data frame. Rec.dbf is a database file that list recreation features an properties, including county location, add this file to the Recreation data frame. The income, recreation, and county files have a common attribute cnty_name. This common field allows you to join these files together. Income Map You need to produce a map showing only those counties with an average per capita income greater than $16,000. Create this map in a new data frame. Video: Lab 8 (Income) The simplest approach uses binary indicator attribute. Select values from the table and then create a new attribute and assign the value 0 (counties below 16,000 per capita income) or the value 1 (counties above 16,000)]. Park/Forest Map You need to create a map (to turn in) of California that colors counties that contain a park, a forest, or both. Create this map in a new data frame. The database file named rec.dbf lists many recreation types, including parks and forest. We must combine this 11

12 with the state county outline layer through a join, but this join is problematic, because the source rec.dbf table does not have a proper key for this join. We have to create a proper key before joining, removing many-to-one relationship for the counties in rec.dbf with counties in the Cal.shp file. There may be multiple entries including for each county, one for each park, forest, reservoir, or other features found in a county. You need to develop a list of counties with parks or forests from this rec.dbf. Video: Lab 8 (Park_Forest). One way is to open the rec.dbf table and select all those with parks, and save your selected records to a Parks table. Repeat this process, selecting and saving only the records with forests to a Forests table. Then create indicator (binary, or 0/1) variables in both tables, for example, create a new field named something like has forest in the forest table, and set this value equal to one for each record in the table, and create a similar has park column of ones in the parks table. Now join the parks and forests tables to Cal.shp, and then select those rows with a park or a forest. There is a map showing the correct set of counties near the end of these instructions. Another, bit trickier option is to create both the parks table and the forests table, as above, but instead of adding the 0/1 binary variable to each, do a serial join. First join the parks.dbf you created with the list of counties that have parks to the Cal.shp table, then join the forests.dbf table to the Cal.shp table (with parks still joined). Then select the records that have either a park or forest in the respective columns, and assign these an indicator variable that you ll use to symbolize your map. Video: Lab 8 (Correct Legend) A note of caution; this is a tricky exercise, and many students do not produce this final map correctly. The main problem comes from multiple entries (parks or forests) for each county. You need to be very careful in the table joins, and look at the maps you produce. Make sure your final product makes sense. One helpful guide may be the flowchart or the maps of the respective component maps; in this case a map of those counties with forests, and a separate map of those counties with parks. The OR condition should include data from both joined files, so your final project 2 map should have both colored in. The figure below as a guide to ensure you ve identified counties correctly, but these are not guides for your final layouts this is just to illustrate some characteristics of the selection. The figure after this one is an example of what part of your final map might look like. 12

13 . Your Park file file should have 37 have records 37 records (rows) and 24 counties, (rows) and as some 24 counties have counties, more than as some one park. counties have more than one park Your Forest file should have 20 rows, and 19 distinct counties as some counties contain more than one Forest 13

14 Remember to both the income and park/forest maps on the same layout (see example below). Each map should be in its own data frame, and both using the UTM Zone 11 projection. Include the following elements in your maps: A descriptive title (not Lab 8. Think, what does your map contain?) The legend should not list file names, for example, cal_utm11.shp. Scale bar and north arrow- use the same scale for each data frame and only 1 north arrow. To submit as.pdf via Moodle: 1) The corn map 2) The California Income and Recreation map 14

How to Download Census Data from American Factfinder and Display it in ArcMap

How to Download Census Data from American Factfinder and Display it in ArcMap How to Download Census Data from American Factfinder and Display it in ArcMap Factfinder provides census and ACS (American Community Survey) data that can be downloaded in a tabular format and joined with

More information

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Data Visualization Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of ArcMap Goals of the Exercise Computer

More information

Tutorial 6 GPS/Point Shapefile Creation

Tutorial 6 GPS/Point Shapefile Creation Tutorial 6 GPS/Point Shapefile Creation The objectives of this tutorial include: 1. Converting GPS field collected point information into a shapefile 2. Creating a shapefile from a simple x,y coordinate

More information

GIS I Business Exr02 (av 9-10) - Expand Market Share (v3b, Jul 2013)

GIS I Business Exr02 (av 9-10) - Expand Market Share (v3b, Jul 2013) GIS I Business Exr02 (av 9-10) - Expand Market Share (v3b, Jul 2013) Learning Objectives: Reinforce information literacy skills Reinforce database manipulation / querying skills Reinforce joining and mapping

More information

Data source, type, and file naming convention

Data source, type, and file naming convention Exercise 1: Basic visualization of LiDAR Digital Elevation Models using ArcGIS Introduction This exercise covers activities associated with basic visualization of LiDAR Digital Elevation Models using ArcGIS.

More information

Data Visualization. Brief Overview of ArcMap

Data Visualization. Brief Overview of ArcMap Data Visualization Prepared by Francisco Olivera, Ph.D., P.E., Srikanth Koka and Lauren Walker Department of Civil Engineering September 13, 2006 Contents: Brief Overview of ArcMap Goals of the Exercise

More information

Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS

Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS This tutorial will introduce you to the following concepts: Identifying Attribute Data Sources Converting Tabular Data into GIS Databases

More information

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 2: Manipulating Display Parameters in ArcMap. Symbolizing Features and Rasters:

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 2: Manipulating Display Parameters in ArcMap. Symbolizing Features and Rasters: : Manipulating Display Parameters in ArcMap Symbolizing Features and Rasters: Data sets that are added to ArcMap a default symbology. The user can change the default symbology for their features (point,

More information

Personal Geodatabase 101

Personal Geodatabase 101 Personal Geodatabase 101 There are a variety of file formats that can be used within the ArcGIS software. Two file formats, the shape file and the personal geodatabase were designed to hold geographic

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

Tutorial 5: Summarizing Tabular Data Florida Case Study

Tutorial 5: Summarizing Tabular Data Florida Case Study Tutorial 5: Summarizing Tabular Data Florida Case Study This tutorial will introduce you to the following: Identifying Attribute Data Sources for Health Data Converting Tabular Data into Usable Databases

More information

Getting Started With Mortgage MarketSmart

Getting Started With Mortgage MarketSmart Getting Started With Mortgage MarketSmart We are excited that you are using Mortgage MarketSmart and hope that you will enjoy being one of its first users. This Getting Started guide is a work in progress,

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

Geocortex HTML 5 Viewer Manual

Geocortex HTML 5 Viewer Manual 1 FAQ Nothing Happens When I Print? How Do I Search? How Do I Find Feature Information? How Do I Print? How can I Email A Map? How Do I See the Legend? How Do I Find the Coordinates of a Location? How

More information

Lab 2: MS ACCESS Tables

Lab 2: MS ACCESS Tables Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating

More information

Government 1008: Introduction to Geographic Information Systems. LAB EXERCISE 4: Got Database?

Government 1008: Introduction to Geographic Information Systems. LAB EXERCISE 4: Got Database? Government 1008: Introduction to Geographic Information Systems Objectives: Creating geodatabases Joining attribute tables Attribute and location based queries Spatial joins Creating spatial and attribute

More information

Spatial Adjustment Tools: The Tutorial

Spatial Adjustment Tools: The Tutorial Spatial Adjustment Tools: The Tutorial By Peter Kasianchuk, ESRI Educational Services In this exercise, you will perform some spatial adjustment and data management operations data to be used in analysis

More information

Map Navigation Controls. An Interactive, Locally Based Knowledge Resource LivingstonLive.org/maps OR gisapps/livingstonviewerinternal

Map Navigation Controls. An Interactive, Locally Based Knowledge Resource LivingstonLive.org/maps OR gisapps/livingstonviewerinternal Livingston County s Internet Mapping Portal User Guide An Interactive, Locally Based Knowledge Resource LivingstonLive.org/maps OR gisapps/livingstonviewerinternal A vast majority of County government

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

Groundwater Chemistry

Groundwater Chemistry Mapping and Modeling Groundwater Chemistry By importing Excel spreadsheets into ArcGIS 9.2 By Mike Price, Entrada/San Juan, Inc. In ArcGIS 9.2, Microsoft Excel spreadsheet data can be imported and used

More information

Acrobat PDF Forms - Part 2

Acrobat PDF Forms - Part 2 Acrobat PDF Forms - Part 2 PDF Form Fields In this lesson, you will be given a file named Information Request Form that can be used in either Word 2003 or Word 2007. This lesson will guide you through

More information

WFP Liberia Country Office

WFP Liberia Country Office 1 Oscar Gobbato [email protected] [email protected] WFP Liberia Country Office GIS training - Summary Objectives 1 To introduce to participants the basic concepts and techniques in using Geographic

More information

CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS

CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS An Excel Pivot Table is an interactive table that summarizes large amounts of data. It allows the user to view and manipulate

More information

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 1) Navigate to the C:/temp folder 2) Make a directory using your initials. 3) Use your web browser to navigate to www.library.yale.edu/mapcoll/ and

More information

The following is an overview of lessons included in the tutorial.

The following is an overview of lessons included in the tutorial. Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your

More information

Community Health Maps Lab Series:

Community Health Maps Lab Series: Community Health Maps Lab Series: Lab 6 Data Visualization With CartoDB Objective: Understand How To Use CartoDB To Create an Online Visualization of Your Data Document Version: 2015-09-15 (V2) This course

More information

Drawing a histogram using Excel

Drawing a histogram using Excel Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to

More information

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

Step 2. Open ArcMap, set Projection to State Plane NAD 83 Feet Apply

Step 2. Open ArcMap, set Projection to State Plane NAD 83 Feet Apply GIS III Exercise 01 Create a Database & Map Urban Land Use Jan 2010 Student Learning Outcomes: Import table data into an MS Access database; NOTE: DOS 8.3 naming is required for files being imported into

More information

Tips & Tricks for ArcGIS. Presented by: Jim Mallard, Crime Analysis Supervisor Arlington, Texas. 2007 IACA Conference Pasadena, Ca

Tips & Tricks for ArcGIS. Presented by: Jim Mallard, Crime Analysis Supervisor Arlington, Texas. 2007 IACA Conference Pasadena, Ca Tips & Tricks for ArcGIS Presented by: Jim Mallard, Crime Analysis Supervisor Arlington, Texas 2007 IACA Conference Pasadena, Ca Table of Contents Lock & Load Labels for Maximum Speed!...2 Choose your

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

Modeling Fire Hazard By Monica Pratt, ArcUser Editor

Modeling Fire Hazard By Monica Pratt, ArcUser Editor By Monica Pratt, ArcUser Editor Spatial modeling technology is growing like wildfire within the emergency management community. In areas of the United States where the population has expanded to abut natural

More information

Click on various options: Publications by Wizard Publications by Design Blank Publication

Click on various options: Publications by Wizard Publications by Design Blank Publication Click on various options: Publications by Wizard Publications by Design Blank Publication Select the Blank Publications Tab: Choose a blank full page Click on Create New Page Insert > Page Select the number

More information

Under GIS Data select Hydrography This will show all of the state-wide options for hydrography data. For this project, we want the seventh entry in

Under GIS Data select Hydrography This will show all of the state-wide options for hydrography data. For this project, we want the seventh entry in Introductory Exercises for GIS Using ArcMap & ArcCatalog GIS Cyberinfrastructure Module EEB 5894, section 10 Please refer to the ESRI online GIS Dictionary for additional details on any of the terms in

More information

Tutorial Creating a regular grid for point sampling

Tutorial Creating a regular grid for point sampling This tutorial describes how to use the fishnet, clip, and optionally the buffer tools in ArcGIS 10 to generate a regularly-spaced grid of sampling points inside a polygon layer. The steps below should

More information

GeoMap.WA. user guide

GeoMap.WA. user guide GeoMap.WA user guide Version 1.1 March 2011 Preface: The information provided is interpretive. The information is made available in good faith and derived from sources believed to be reliable and accurate

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

Getting Census Data into ArcMap or ArcView. Obtaining Shapefiles from ESRI and Data from the Census Bureau

Getting Census Data into ArcMap or ArcView. Obtaining Shapefiles from ESRI and Data from the Census Bureau Obtaining Shapefiles from ESRI and Data from the Census Bureau 1) Download the boundary shapefile from the ESRI website: http://arcdata.esri.com/data/tiger2000/tiger_download.cfm. Select the area that

More information

ArcGIS Tutorial: Adding Attribute Data

ArcGIS Tutorial: Adding Attribute Data ArcGIS Tutorial: Adding Attribute Data Introduction A common need in GIS is to map characteristics, or attributes, of different geographic areas. These maps are called thematic maps. Examples of thematic

More information

Working with SPSS, ArcGIS and ICPSR data A praxis for mapping data quickly and easily

Working with SPSS, ArcGIS and ICPSR data A praxis for mapping data quickly and easily Working with SPSS, ArcGIS and ICPSR data A praxis for mapping data quickly and easily Step 1. Setting up ArcGIS directory and acquiring files We will be working with the County Characteristics, 2000-2007

More information

Avery Dennison UK Consumer Helpline: 0800 80 50 20 Consumer email: [email protected]

Avery Dennison UK Consumer Helpline: 0800 80 50 20 Consumer email: consumerservice-uk@eu.averydennison.com Avery DesignPro for PC Frequently Asked Questions General Information Questions Q: What are the system requirements for DesignPro? A: The following is required to run DesignPro: Microsoft Windows VistaTM,

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

APPENDICES. Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm

APPENDICES. Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm APPENDICES Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm Appendix 2 The MapPlace Toolbar and Popup Menu http://www.em.gov.bc.ca/mining/geolsurv/mapplace/menudesc.htm

More information

Online Digitizing and Editing of GIS Layers (On-Screen or Head s Up Digitizing)

Online Digitizing and Editing of GIS Layers (On-Screen or Head s Up Digitizing) Online Digitizing and Editing of GIS Layers (On-Screen or Head s Up Digitizing) 2011 Charlie Schweik, Alexander Stepanov, Maria Fernandez, Lara Aniskoff Note: This work is licensed under the Creative Commons

More information

Week 5 Cookbook: GIS Tutorial Chapter 2 GIS Map Design: Choropleth Maps

Week 5 Cookbook: GIS Tutorial Chapter 2 GIS Map Design: Choropleth Maps Week 5 Cookbook: GIS Tutorial Chapter 2 GIS Map Design: Choropleth Maps Week 5 Overview 1. Introducing Choropleth Maps 2. Introducing Map Elements 3. First Hands-On Example 4. Your Turn: GIS Tutorial Chapter

More information

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email [email protected]

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email Financial.Reports@dartmouth.edu IRA Pivot Table Review and Using Analyze to Modify Reports 1 What is a Pivot Table? A pivot table takes rows of detailed data (such as the lines in a downloadable table) and summarizes them at a higher

More information

National RTAP Marketing Transit Toolkit Customizing Templates in Microsoft Publisher

National RTAP Marketing Transit Toolkit Customizing Templates in Microsoft Publisher National RTAP Marketing Transit Toolkit Customizing Templates in Microsoft Publisher Customizing the Templates in Microsoft Publisher Microsoft Publisher is part of the Microsoft Office Suite, so most

More information

IST 195 Lab 11: MS Access

IST 195 Lab 11: MS Access Title of lab: Microsoft Access 2010 IST 195 Lab 11: MS Access Learning goal: Databases are collections of information, and database programs are designed to maintain data in structured tables. In this

More information

Creating a File Geodatabase

Creating a File Geodatabase Creating a File Geodatabase Updated by Thomas Stieve January 06, 2012 This exercise demonstrates how to create a file geodatabase in ArcGIS 10; how to import existing data into the geodatabase, and how

More information

COGNOS Query Studio Ad Hoc Reporting

COGNOS Query Studio Ad Hoc Reporting COGNOS Query Studio Ad Hoc Reporting Copyright 2008, the California Institute of Technology. All rights reserved. This documentation contains proprietary information of the California Institute of Technology

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored.

Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored. In this lesson you will create a Digital Elevation Model (DEM). A DEM is a gridded array of elevations. In its raw form it is an ASCII, or text, file. First, you will interpolate elevations on a topographic

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Linear Referencing Tutorial

Linear Referencing Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents An overview of the linear referencing tutorial........................ 3 Exercise 1: Organizing your linear referencing data in ArcCatalog...............

More information

Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005

Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005 Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005 Introduction This tutorial is designed for people who are new

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

Tutorial 4 - Attribute data in ArcGIS

Tutorial 4 - Attribute data in ArcGIS Tutorial 4 - Attribute data in ArcGIS Note: Before beginning the tutorial, please make sure your server folder is mapped. The data you will be working with this week is contained in a winzip archive called

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012 2012 SAP Business Intelligence (BI) Reporting Training for MM General Navigation Rick Heckman PASSHE 1/31/2012 Page 1 Contents Types of MM BI Reports... 4 Portal Access... 5 Variable Entry Screen... 5

More information

Help Document for WWW.SAGIS.ORG. Step by step, how-to instructions for navigating and using the Savannah Area GIS viewer.

Help Document for WWW.SAGIS.ORG. Step by step, how-to instructions for navigating and using the Savannah Area GIS viewer. Help Document for WWW.SAGIS.ORG Step by step, how-to instructions for navigating and using the Savannah Area GIS viewer. 1 SAGIS Savannah Area GIS is focused on providing access to Geospatial data in a

More information

USING THE UPSTREAM-CONNECT WEBSITE

USING THE UPSTREAM-CONNECT WEBSITE USING THE UPSTREAM-CONNECT WEBSITE The UpstreamConnect website is your primary means for viewing imaging device data and reports. This manual covers all aspects of using the UpstreamConnect website. HELPDESK

More information

MICROSOFT WORD TUTORIAL

MICROSOFT WORD TUTORIAL MICROSOFT WORD TUTORIAL G E T T I N G S T A R T E D Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents,

More information

Creating Figure Ground Maps in ArcMap 10.x: Basic procedures to download, open, manipulate and print spatial data

Creating Figure Ground Maps in ArcMap 10.x: Basic procedures to download, open, manipulate and print spatial data Creating Figure Ground Maps in ArcMap 10.x: Basic procedures to download, open, manipulate and print spatial data These procedures outline: A. Retrieving Property Data B. Uncompressing the Downloaded Files

More information

Barcode Label Generator

Barcode Label Generator Barcode Label Generator User Guide Version 1.0 04-24-09 2009 Bio-Rad Laboratories, Inc. Contents Introduction 1 Key Features.................................................. 1 Program Hints 2 Getting

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

2Creating Reports: Basic Techniques. Chapter

2Creating Reports: Basic Techniques. Chapter 2Chapter 2Creating Reports: Chapter Basic Techniques Just as you must first determine the appropriate connection type before accessing your data, you will also want to determine the report type best suited

More information

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 5: Analyzing Spatial Data. Buffering Features:

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 5: Analyzing Spatial Data. Buffering Features: : Analyzing Spatial Data Buffering Features: A buffer operation is one of the most common spatial analysis tools. A buffer is a map feature that represents a uniform distance around a feature. When creating

More information

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9 TABLE OF CONTENTS Query 4 Lesson Objectives 4 Review 5 Smart Query 5 Create a Smart Query 6 Create a Smart Query Definition from an Ad-hoc Query 9 Query Functions and Features 13 Summarize Output Fields

More information

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Participant Guide RP301: Ad Hoc Business Intelligence Reporting RP301: Ad Hoc Business Intelligence Reporting State of Kansas As of April 28, 2010 Final TABLE OF CONTENTS Course Overview... 4 Course Objectives... 4 Agenda... 4 Lesson 1: Reviewing the Data Warehouse...

More information

Creating an Access Database. To start an Access Database, you should first go into Access and then select file, new.

Creating an Access Database. To start an Access Database, you should first go into Access and then select file, new. To start an Access Database, you should first go into Access and then select file, new. Then on the right side of the screen, select Blank database. Give your database a name where it says db1 and save

More information

Chapter 6: Data Acquisition Methods, Procedures, and Issues

Chapter 6: Data Acquisition Methods, Procedures, and Issues Chapter 6: Data Acquisition Methods, Procedures, and Issues In this Exercise: Data Acquisition Downloading Geographic Data Accessing Data Via Web Map Service Using Data from a Text File or Spreadsheet

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

Task Card #2 SMART Board: Notebook

Task Card #2 SMART Board: Notebook Task Card #2 SMART Board: Notebook Objectives: Participants will learn how to utilize the SMART Notebook. Table of Contents: Launching The SMART Notebook Page 1 Entering Text Page 1 Top Toolbar Page 2

More information

ArcScan Tutorial. Copyright 1995-2010 Esri All rights reserved.

ArcScan Tutorial. Copyright 1995-2010 Esri All rights reserved. Copyright 1995-2010 Esri All rights reserved. Table of Contents Exercise 1: Interactive vectorization........................... 3 Exercise 2: Automatic vectorization........................... 12 Copyright

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

Geocoding and Buffering Addresses in ArcGIS

Geocoding and Buffering Addresses in ArcGIS INTRODUCTION and Buffering Addresses in ArcGIS is the process of assigning location coordinates in a continuous, globlal reference system (Latitude and Longitude, for instance) to street addresses. While

More information

How to Import Data into Microsoft Access

How to Import Data into Microsoft Access How to Import Data into Microsoft Access This tutorial demonstrates how to import an Excel file into an Access database. You can also follow these same steps to import other data tables into Access, such

More information

m ac romed ia Fl a s h Curriculum Guide

m ac romed ia Fl a s h Curriculum Guide m ac romed ia Fl a s h Curriculum Guide 1997 1998 Macromedia, Inc. All rights reserved. Macromedia, the Macromedia logo, Dreamweaver, Director, Fireworks, Flash, Fontographer, FreeHand, and Xtra are trademarks

More information

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013)

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) This guide was created to allow agencies to set up the e-data Tech Support project s Microsoft Access template. The steps below have been

More information

Module SYSTEM INTRODUCTION & BASIC NAVIGATION. Astra Schedule Training Guide

Module SYSTEM INTRODUCTION & BASIC NAVIGATION. Astra Schedule Training Guide Module 1 SYSTEM INTRODUCTION & BASIC NAVIGATION Astra Schedule Training Guide Table of Contents Introduction... 1 Lesson Audience... 1 Lesson Objectives... 1 Configuration Requirements... 1 Common Practices...

More information

Gestation Period as a function of Lifespan

Gestation Period as a function of Lifespan This document will show a number of tricks that can be done in Minitab to make attractive graphs. We work first with the file X:\SOR\24\M\ANIMALS.MTP. This first picture was obtained through Graph Plot.

More information

Symbolizing your data

Symbolizing your data Symbolizing your data 6 IN THIS CHAPTER A map gallery Drawing all features with one symbol Drawing features to show categories like names or types Managing categories Ways to map quantitative data Standard

More information

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver LESSON 3: ADDING IMAGE MAPS, ANIMATION, AND FORMS CREATING AN IMAGE MAP OBJECTIVES By the end of this part of the lesson you will: understand how image maps can enhance a design and make a site more interactive

More information

Adobe Acrobat X Pro Creating & Working with PDF Documents

Adobe Acrobat X Pro Creating & Working with PDF Documents Adobe Acrobat X Pro Creating & Working with PDF Documents Overview Creating PDF documents is useful when you want to maintain the format of your document(s). As a PDF document, your file maintains its

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

NetCDF Tutorial. Copyright 1995-2010 Esri All rights reserved.

NetCDF Tutorial. Copyright 1995-2010 Esri All rights reserved. Copyright 1995-2010 Esri All rights reserved. Table of Contents About the netcdf Tutorial............................... 3 Exercise 1: Displaying a raster layer from a netcdf file................... 4

More information

WebViewer User Guide. version 1.4.0. 2002-2013 PDFTron Systems, Inc. 1 of 13

WebViewer User Guide. version 1.4.0. 2002-2013 PDFTron Systems, Inc. 1 of 13 WebViewer User Guide version 1.4.0 1 of 13 Table of Contents Introduction...4 Desktop HTML5...5 Toolbar Menu...5 Display Modes...5 Zoom Options...5 Navigation Options...6 Tool Modes...6 Side Panel...7

More information

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online...

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online... Table of Contents ArcGIS online Introduction... 2 Module 1: How to create a basic map on ArcGIS online... 3 Creating a public account with ArcGIS online... 3 Opening a Map, Adding a Basemap and then Saving

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

PowerWorld Simulator

PowerWorld Simulator PowerWorld Simulator Quick Start Guide 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 [email protected] http://www.powerworld.com Purpose This quick start guide is intended to

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Check out our website!

Check out our website! Check out our website! www.nvcc.edu/woodbr idge/computer-lab Contact Us Location: Open Computer Lab Seefeldt Building #336 NOVA Woodbridge Campus Hussna Azamy (OCL Supervisor) Phone: 703-878-5714 E-mail:

More information

FastTrack Schedule 10. Tutorials Manual. Copyright 2010, AEC Software, Inc. All rights reserved.

FastTrack Schedule 10. Tutorials Manual. Copyright 2010, AEC Software, Inc. All rights reserved. FastTrack Schedule 10 Tutorials Manual FastTrack Schedule Documentation Version 10.0.0 by Carol S. Williamson AEC Software, Inc. With FastTrack Schedule 10, the new version of the award-winning project

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Tutorial 3 - Map Symbology in ArcGIS

Tutorial 3 - Map Symbology in ArcGIS Tutorial 3 - Map Symbology in ArcGIS Introduction ArcGIS provides many ways to display and analyze map features. Although not specifically a map-making or cartographic program, ArcGIS does feature a wide

More information

Introduction to dobe Acrobat XI Pro

Introduction to dobe Acrobat XI Pro Introduction to dobe Acrobat XI Pro Introduction to Adobe Acrobat XI Pro is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view a copy of this

More information