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

Size: px
Start display at page:

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

Transcription

1 Government 1008: Introduction to Geographic Information Systems Objectives: Creating geodatabases Joining attribute tables Attribute and location based queries Spatial joins Creating spatial and attribute data Estimated Time: 4 5 hours LAB EXERCISE 4: Got Database? 1.0 Problem: Using database techniques to query and reason with your data In this lab exercise you will investigate the relationships between crime, density, and housing value and speculate about how spills or crashes may play a role in describing them. You will learn to combine multiple data tables and layers from various sources in making queries and generating statistics. Recall what you found in previous lab exercises about Environmental justice locations in Massachusetts and use that knowledge in generating your spatial questions. Data used in this part of the lab exercise Data in the massgis folder 1.0 Geodatabases To manage your own spatial database, you can create a geodatabase 1. A geodatabase is a collection of geographic datasets of various formats. In ArcGIS a geodatabase is a collection of geographic datasets of various types held in a common file system folder, a Microsoft Access database, or a multiuser relational database (such as Oracle, Microsoft SQL Server, or IBM DB2). The geodatabase can contain three primary dataset types: Feature classes Raster datasets Tables A file geodatabase (*.gdb) offers all the functionality of a geodatabase, but it is stored in a file structure, whereas, with a personal geodatabase (*.mdb) your data will be stored in a Microsoft Access readable database (which you can access from outside of ArcGIS in Microsoft Access for non spatial queries). 1. Start up ArcCatalog. 2. Select from the main menu in ArcCatalog: File, then New, then File Geodatabase (not Personal Geodatabase) or right click in the TOC to select New and then File Geodatabase. Rename this new geodatabase to be lab4. Import spatial data files from the massgis folder to this geodatabase as follows: 1

2 3. Right click against the geodatabase lab4.gdb in your folder to get a menu as shown in the screen on the right where you should select Import and Feature Class (multiple). 4. You will get a new window. Import the shapefiles: census2000blockgroups_poly (a shapefile showing census block groups in Massachusetts) and TownsMA from your lab2 (or census2000towns_poly in massgis all the towns in Massachusetts). 5. Right click against the geodatabase lab4.gdb in your folder to get a menu where you should select Import and then Table (Multiple) to get a new window. Import the tables MassIncomeHousingValue_Census1990blockgroups.xls (housing values from Census 1990), housing_value.dbf (housing values from Census 2000) from the massgis folder, ucr_90_s_v.dbf and ucr_00_s_v.dbf from the folder spoliver_sf_crime_towns in massgis. 6. You can rename the tables and shapefiles within the geodatabase in ArcCatalog The census2000blockgroups_poly shapefile is documented at and explains the variables in the file housing_value.dbf. All the crime data for MA are in the folder spoliver_sf_crime_towns in massgis and the two tables you imported show crime statistics by town for 1990 and More on the spatial data files can be found at: and on the database at 7. Open ArcMap and add (or drag from ArcCatalog) the shapefile for Towns and all the tables in your lab4 geodatabase. 1.1 Adding Fields to Tables In order to add a field to a table, three conditions must be met: You must have write access to the data You should not be currently editing the data in ArcMap or ArcCatalog No other users or applications should be accessing the data. If any of these conditions are not met, the Add Field option will be grayed out or it will not work. To be able to edit a spatial data file, therefore, you must copy it to your own n: folder. 2

3 You are going to edit the attribute table of the Towns shapefile to include population density variables: 8. Open the attribute table for the TownsMA or census2000towns_poly shapefile (right click in table of contents TOC and then select Open Attribute Table). 9. In the table, click on the Table Options icon at the top right corner of the table window. Select Add Fields from the menu that drops down. 10. In the Add field dialog, enter DENSITY90 into the Name space, Double into the Type space, set the Alias and Default. Click OK. You can see that the new field appears in the last column (on the extreme right) of the table. 11. Also add fields called DENSITY00 and DENSITYCH. FIELD TYPES Text: textual data, letters and/or numbers Short Integer: integer numbers values between +/-32,767 Long Integer: integer numbers values between +/-2.16 billion Float: real numbers (positive numbers) to a decimal precision of 7 places (7 significant digits) (this field type is also referred to as Single) Double: real numbers (positive numbers) to a decimal precision of 15 places (15 significant digits) Date: stores dates (and or times); in geodatabases, this field can store the date and the time; in shapefiles and coverages it can only store the date portion and date fields will display differently in different applications BLOB: stores references to Binary Large OBjects like video, audio, word files, or other binary data PRECISION: For numeric data, precision is the total number of digits allowed (Left and Right of decimal point) SCALE: Number of allowable digits to the Right of the decimal point and only for Float and Double field types You should have three new fields, DENSITY00, DENSITY90 and DENSITYCH that have no data as yet within the columns. Note: To see variable characteristics for the other variables in the Towns attribute table, right click on shapefile in the TOC. Then select Properties and click the Fields tab. 1.2 Calculating new field values Now fill the new fields with data: 12. In ArcMap, go to main menu Customize and then Toolbars and check Editor followed by the Close button. 13. On the editor toolbar, select the Editor pull down menu and click on Start Editing. 14. During the editing of a table it is common to select a single or a number of records by mistake. They instantly become highlighted. To clear this selection, click on the Table Options menu and select Clear Selection. 15. Left click on the DENSITY90 field (column) heading in the table to highlight it. 16. Then right click on column heading. Scroll down the menu that appears and select Field Calculator to get a new window. 3

4 17. In the Field Calculator window enter the formula for calculating density: double click [POP1990] on the Fields, click or type / and then double click [SQ_MI] on the Fields. You can also type all the calculations you need but you need to be careful to type exactly the names of the fields including brackets. 18. Click on OK. The values for DENSITY90 (in population per sq mile) will now appear on the table. 19. Repeat the two previous steps for DENSITY00 (change the population variable to POP2000) and for DENSITYCH which is the difference between DENSITY00 and DENSITY90). 20. Once you have created the three new variables save your work by clicking on Editor and then Save Edits. 21. You can also perform statistical operations on the field. Highlight the column DENSITY90 in the table, right click on it and select Statistics. This brings up the statistics window that provides basic statistics for the field. 1.3 Attribute Queries We can now query the new fields that have been created. We want to select all towns that have DENSITYCH less than 0 or in other words all towns where density decreased between 1990 and You can perform attribute queries through the geographic data view or through the attribute table. As the table and the map window are dynamically linked, your selection results should be visible in both places. 22. To access the attribute query dialog, click on the Select By Attributes icon at the top of the Table or go to the main menu Selection, and click Select By Attributes. 4

5 23. A Select by Attributes window will appear this is a RQBE (relational query by example) where you can construct a query without needing to know the underlying Structured Query Language (SQL). However, some SQL is also visible as in SELECT * FROM census2000towns_poly WHERE. 24. Under fields, scroll down to DENSITYCH and double click on it. Then click on < and then enter 0. Click Apply and then close the Select by Attributes window. 25. The towns with a fall in density are highlighted in both the map as well as the table. Note: After the query, click on Clear Selection icon in the Table icons or from the Table Options pull down menu or from the Selection main menu item in the geographic data view if you want to get rid of the selection and make a new selection query. 1.4 Sorting Data 26. Click on DENSITY00 field in the table to highlight it and then click on the right mouse button. From the accompanying menu, you can select Sort Ascending or Sort Descending. Before you exit you must save your edits. 27. To do this, click Stop editing on the Editor toolbar. When you click stop editing, you will be asked if you want to save edits (if you have not already saved them). Click yes and your edits will be saved. Question 1 (20 points) Answer these questions before you move on to the next section Question 1a (10 points): Which towns had the greatest fall in density (look at the top 10)? What would you predict about housing values in towns where density fell? 5

6 Question 1b (10 points): Which were the densest towns in 2000 (again look at the top 10)? Did density rise in those towns between 1990 and 2000? What do you predict about crime trends in the communities with a steep fall (or steep rise) in density? 1.5 Joining tables If you open the attribute file associated with the Towns shapefile you will notice that it does not have any crime related variables. However, we know that the crime tables and Towns have a common key: TOWNS_ID. The Towns attribute table shares a field called TOWN_ID in common with the crime tables for 1990 and Right click in the TOC against the table ucr_00_s_v and then select Joins and Relates and then Join to get a new window called Join Data. Complete the details of the join as shown. What do you want to join to this layer? should be Join attributes from a table. The key is TOWN_ID. Check against Keep only matching records. Click OK. If it asks to index your data click on OK. 29. Then, right click on the shapefile TownsMA or census2000towns_poly in the TOC. Select Joins and Relates and then Join to get a new window called Join Data. Check against Keep only Matching Records. See screenshots below for other details. Now the attributes from both the crime tables will be visible in the Towns attribute table when you scroll to the right. 30. Query this table using Select by Attributes (main menu Selection and then Select by Attribute). For example, I queried all locations where murder rates (and total robberies) in 2000 were more than murder rates (and total robberies) in Note: Joins are stored in the ArcMap document itself but are not permanent unless you save this data as a new shapefile. Note: If you plan on moving the data at some point, you should 6

7 save your ArcMap documents with relative paths (main menu File and then Map Document Properties and check against Store relative path names to data sources). If data is moved, you can repair tables and layers after opening the document, but unless the target table and the join tables are in the same workspace, the joins will not be repaired. If you save your document with relative paths, tables and layers will be restored automatically with joins as long as the document has been moved relative to the where the data has been moved. 31. Add the census2000blockgroups_poly shapefile in the Lab4.gdb to your map document and join the housing value by census block groups data table to it. How could you join them? Hint: census2000blockgroups_poly and housing_value.dbf share a common key called LOGRECNO; census2000blockgroups_poly and HousingvalueIncomedata_ share a common key BG_ID. These were all one to one joins. To do one to many or many to many joins you need to use a similar tool called Relate or aggregate the data in some way. Remember to save your lab4.mxd document. Question 2 (40 points) Question 2a (10 points): Create a map for one crime related variable from the crime data that you joined to Towns in MA. (This does not have to be a layout that includes north arrow, scale etc. Just attach a screenshot of the map and legend). Briefly describe what it suggests about that crime. Question 2b (10 points) Describe briefly one crime related query that shows change in that crime variable between 1990 and Attach screenshots. Question 2c (20 points) Create a map showing housing values in Massachusetts in 1990 versus Use this map to describe in a few paragraphs whether it confirms your hypotheses about the relationships between housing value and density (in question 1a). (This does not have to be a layout that includes north arrow, scale etc. Just attach a screen showing a screenshot of the map and a legend). 1.6 Spatial Queries 32. Add the final version of spills or crashes dataset that you created in the previous lab exercise to your ArcMap document. 33. Go to the main menu Selection then Select by Location. In the Select by Location window try out spatial queries that could assess possible relationships between housing values, and crash (or spill) locations. 7

8 34. Add other layers from massgis that may help you explain any patterns that you noticed: for example Environmental_Justice_Populations, etc. The screen on the right shows how to set up a query to find all Environmental Justice designated block groups that are within 0.5 mile of hazardous material or oil spills. 35. You can switch the selection in the table to conduct statistics for different subsets. For example Calculate statistics for mean percentage minorty in EJ block groups 0.5 miles from spills versus those block groups which are over 0.5 miles from it. Question 3 (20 points) Do this after you do the next section Write a brief description of the results of your spatial quer(ies). You could test theories and reason about a few of these theories regarding the relationships between population density, income, housing values, and spills (and/ or crashes). Include the screenshot of at least 1 spatial query, and 2 graphs (using the Statistics tool). If you think it is relevant to your question, incorporate the crime trends that you mapped in the previous question. You could concentrate on one location (like the city of Springfield, Boston or Cambridge) or look at overall trends within the state or a region in the state. Refer to your map in Question 4 for this description. I will grade this based on your coherence in stating your hypotheses about relationships (or questions about trends) and the appropriateness of the visual material you attach to answer the questions you set out to not on the quantity of visuals or material that you attach. Examples of visuals you could attach: Statistics on median housing value in EJ block groups within 0.5 km of hazardous material spills versus median housing value in EJ block groups more than 0.5 km of hazardous material spills 1.7 Spatial Joins in ArcGIS To find out the number of hazardous materials/ oil spills or crashes in each of the census block groups you would create a spatial join between the two shapefiles: spills/crashes and census block groups. Recall (from Lab Ex 2) that you can only do these overlays if they both are georeferenced to the same coordinate system, projection, etc. 36. Right click against census block groups in the TOC, then select Joins and Relates and then Joins to get a Join Data window. In this window, change What do you want to join to this layer? to be Join data from another layer based on spatial location. Accept the defaults and save your output to censusbg_spillscount or censusbg_crashescount your folder. Click OK. 8

9 37. When you open the attribute file for the new shapefile (that is automatically added to your ArcMap display) you will find that it has a new variable Count_ that shows the number of spills (or crashes) in each census block group. Where do you find many spills/ crashes? (Do an attribute query to find such block groups). Notice that there are data files associated with census block groups that have many other variables that may be of interest to you (which you could also join). These files are documented at Creating new attribute tables 38. First, add the Spatial Analyst extension added. In the main menu click Tools and then Extensions and then make sure Spatial Analyst is checked. 39. Add one of the following rasters from massgis depending on the type of analysis you would like to reason about: income99, density00 or lichildden if you choose to skip If you add income you are interested in asking about the differences in income between various census block groups with different numbers of spills/ crashes. Therefore your spatial question is Are there differences in income between block groups which have no spills versus ten or more spills? Creating a raster data set from a vector data set (Optional) 40. Click on the Conversion Tools in ArcToolbox and then To Raster and then Feature to Raster to get a new window. 41. Create a new raster that shows median housing value by 500x500m cells that were converted from the block groups data (see screen that follows) Creating an attribute table 42. Click on the Spatial Analyst tools in ArcToolbox, then select Zonal followed by Zonal statistics as Table to get a new window as shown. 9

10 43. Let spills or crashes be your zone data set and the field you are interested is the number of spills or crashes (Count_). In other words you want to find the average housing value (this is an average of median housing value not a great variable statistically speaking) for each spill/ crash category (the number of spills or crashes varying from 0 to the maximum number of crashes or spills). Click OK to get a new table. 44. You can open this table in Excel and make a graph. Or click on the Table options icon and then in the drop down menu select Create Graph to get a new window where you want a Vertical bar graph with the X field is COUNT_, X label field is COUNT_ and the Value field is the (housing value) mean. The graph appears to indicate a falling trend in mean of median housing value in owner occupied units as the numbers of spills in the census block group increases. Save the final graph that you create. Question 4 (20 points) Create a layout with the graph you created in Section 1.8, and a map of any variable that is relevant to your discussion in Question 3. (Include legend, title, north arrow, source, scale in this map). 10

Government 1009: Advanced Geographical Information Systems Workshop. LAB EXERCISE 3b: Network

Government 1009: Advanced Geographical Information Systems Workshop. LAB EXERCISE 3b: Network Government 1009: Advanced Geographical Information Systems Workshop LAB EXERCISE 3b: Network Objective: Using the Network Analyst in ArcGIS Implementing a network functionality as a model In this exercise,

More information

Government 98dn Mapping Social and Environmental Space

Government 98dn Mapping Social and Environmental Space Government 98dn Mapping Social and Environmental Space LAB EXERCISE 5: The Analysis of Fields Objectives of this lab: Visualizing raster data Using Spatial Analyst functions to create new data Analysis

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

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 4: Preparing Data for Analysis

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 4: Preparing Data for Analysis : Preparing Data for Analysis When a user acquires a particular data set of interest, it is rarely in the exact form that is needed during analysis. This tutorial describes how to change the data to make

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

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

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

WFP Liberia Country Office

WFP Liberia Country Office 1 Oscar Gobbato oscar.gobbato@wfp.org oscar.gobbato@libero.it WFP Liberia Country Office GIS training - Summary Objectives 1 To introduce to participants the basic concepts and techniques in using Geographic

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

Introduction to the ArcGIS Data Model and Application Structure

Introduction to the ArcGIS Data Model and Application Structure Introduction to the ArcGIS Data Model and Application Structure RNR/GEOG 417/517 Lab 6 Presentation Overview The georelational data model Structure of ArcGIS software Structure of an ArcGIS workspace Demonstrations/previews

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

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

GIS II: Data Management: Creation, edition and maintenance of geographic data Module 1: Leveraging the where of your geographic data

GIS II: Data Management: Creation, edition and maintenance of geographic data Module 1: Leveraging the where of your geographic data *** Files needed for exercise: MT_ACS09_trt.shp, and McDonalds_rr.shp Goals: After completing this exercise, you will have experience in performing spatial joins and selections and reviewed your understanding

More information

Spatial Database Support

Spatial Database Support Page 1 of 11 Spatial Database Support Global Mapper can import vector data from and export vector data to the following spatial databases: Esri ArcSDE Geodatabase Esri File Geodatabase Esri Personal Geodatabases

More information

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

GIS III: GIS Analysis Module 2a: Introduction to Network Analyst

GIS III: GIS Analysis Module 2a: Introduction to Network Analyst *** Files needed for exercise: nc_cty.shp; target_stores_infousa.dbf; streets.sdc (provided by street map usa); NC_tracts_2000sf1.shp Goals: To learn how to use the Network analyst tools to perform network

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

Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map!

Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map! Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map! Overview 1. A GIS is NOT a Map! 2. How does a GIS handle its data? Data Formats! GARP 0344 (Fall 2013) Page 1 Dr. Carsten Braun 1) A

More information

MetroBoston DataCommon Training

MetroBoston DataCommon Training MetroBoston DataCommon Training Whether you are a data novice or an expert researcher, the MetroBoston DataCommon can help you get the information you need to learn more about your community, understand

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

Database Servers Tutorial

Database Servers Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents A quick tour of the database servers tutorial........................ 3 Exercise 1: Add a database server to the Catalog tree and create

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

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

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES A TUTORIAL FROM SPATIAL AND NUMERIC DATA SERVICES NICOLE SCHOLTZ AND GEOFF IVERSON Overview... 2 A. Get a Digital Elevation Model (DEM)... 3 B. Open ArcMap,

More information

GIS III: GIS Analysis Module 1a: Network Analysis Tools

GIS III: GIS Analysis Module 1a: Network Analysis Tools *** Files needed for exercise: MI_ACS09_cty.shp; USBusiness09_MI.dbf; MI_ACS09_trt.shp; and streets.sdc (provided by Street Map USA) Goals: To learn how to use the Network Analyst tools to perform network-based

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

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

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

GEOGRAPHIC INFORMATION SYSTEMS Lecture 20: Adding and Creating Data

GEOGRAPHIC INFORMATION SYSTEMS Lecture 20: Adding and Creating Data Adding Existing Data Into ArcGIS - there are many different ways to get data into ArcGIS GEOGRAPHIC INFORMATION SYSTEMS Lecture 20: Adding and Creating Data Add Data - normally we use the Add Data button

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

ArcGIS. Tips and Shortcuts. for Desktop

ArcGIS. Tips and Shortcuts. for Desktop ArcGIS Tips and Shortcuts for Desktop Map Navigation Refresh and redraw the display. F5 Suspend the map s drawing. F9 Zoom in and out. Center map. Roll the mouse wheel backward and forward. Hold down Ctrl

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

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

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

Business Objects. Report Writing - CMS Net and CCS Claims

Business Objects. Report Writing - CMS Net and CCS Claims Business Objects Report Writing - CMS Net and CCS Claims Updated 11/28/2012 1 Introduction/Background... 4 Report Writing (Ad-Hoc)... 4 Requesting Report Writing Access... 4 Java Version... 4 Create A

More information

1. Launch ArcCatalog, then navigate to the following location using the directory tree on the left side of the screen:

1. Launch ArcCatalog, then navigate to the following location using the directory tree on the left side of the screen: Vector Data Analysis I: Buffering Today we will use ArcMap and ArcToolbox to manipulate vector-based geographic data. The results of these simple analyses will allow us to visualize complex spatial relationships.

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

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

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

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

Finding GIS Data and Preparing it for Use

Finding GIS Data and Preparing it for Use Finding_Data_Tutorial.Doc Page 1 of 19 Getting Ready for the Tutorial Sign Up for the GIS-L Listserv Finding GIS Data and Preparing it for Use The Yale University GIS-L Listserv is an internal University

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

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 Program Services Office & Decision Support Group Table of Contents Create New Analysis... 4 Criteria Tab... 5 Key Fact (Measurement) and Dimension

More information

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE There are several ways to eliminate having too much email on the Exchange mail server. To reduce your mailbox size it is recommended that you practice the following tasks: Delete items from your Mailbox:

More information

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class.

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. Creating a Pie Graph Step-by-step directions In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. 1. Enter Data A. Open

More information

Geographic Information Systems Training Module I through 4

Geographic Information Systems Training Module I through 4 Geographic Information Systems Training Module I through 4 ARC GIS 10.x Geographic Information Systems and GPS Training Guide Developed by Stephen P. Menard Jr, USAID/Malawi Program Officer - Original

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

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

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

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

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

ArcGIS Reference Document

ArcGIS Reference Document Migration of GIS Data to ArcSDE Page 1 of 10 Table of Contents A Brief Summary of DEP s GIS Data Storage o The Y Drive o ArcSDE (Spatial Database) Keeping Your GIS Project Data Current o Checking Your

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

HELCOM Data and Map Service. User Manual

HELCOM Data and Map Service. User Manual HELCOM Data and Map Service User Manual Version 2.2 - February 2015 1 Table of contents 1. General Information... 3 1.1 Background... 3 1.2 Technical requirements... 3 1.3 Contact... 3 2. Accessing HELCOM

More information

Use Geodatabase Subtypes and Attribute Domains for Automatic Validation Tutorial

Use Geodatabase Subtypes and Attribute Domains for Automatic Validation Tutorial Use Geodatabase Subtypes and Attribute Domains for Automatic Validation Tutorial By Marnel Taggart and Mike Ridland, ESRI Educational Services Overview This tutorial supplements the article Use Geodatabase

More information

Affiliation Security

Affiliation Security Affiliation Security Access to more student information: View student information with majors/minors* View student information under your advisement View students who have signed up for courses* View student

More information

Animation in ArcMap Tutorial

Animation in ArcMap Tutorial ArcGIS 9 Animation in ArcMap Tutorial Copyright 2005 2008 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI.

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

Spatial Analyst Tutorial

Spatial Analyst Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents About the ArcGIS Spatial Analyst Tutorial......................... 3 Exercise 1: Preparing for analysis............................ 5 Exercise

More information

Syllabus AGET 782. GIS for Agricultural and Natural Resources Management

Syllabus AGET 782. GIS for Agricultural and Natural Resources Management Syllabus AGET 782 Course Title: GIS for Agricultural and Natural Resources Management Course Abbreviation: AGET 782 Course Credits: Instructor: Course Description: Required Text: 3 hours Timothy N. Burcham,

More information

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients Technical Paper Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients A practical introduction to SAS Information Map Studio and SAS Web Report Studio for new and experienced

More information

Hands-on Exercise Using DataFerrett American Community Survey 5-Year Summary File: 2006-2010 Foreign Born by Age by Sex

Hands-on Exercise Using DataFerrett American Community Survey 5-Year Summary File: 2006-2010 Foreign Born by Age by Sex Hands-on Exercise Using DataFerrett American Community Survey 5-Year Summary File: 2006-2010 Foreign Born by Age by Sex U.S. Census Bureau DataFerrett Help http://dataferrett.census.gov/ 1-866-437-0171

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

SharePoint How To s / Team Sites 1of 6

SharePoint How To s / Team Sites 1of 6 SharePoint How To s / Team Sites of 6 SharePoint Server 007 Team Sites are Web sites created from a template and designed for team collaboration. They are hosted on the corporate network. Team Sites 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

Databases in Microsoft Access David M. Marcovitz, Ph.D.

Databases in Microsoft Access David M. Marcovitz, Ph.D. Databases in Microsoft Access David M. Marcovitz, Ph.D. Introduction Schools have been using integrated programs, such as Microsoft Works and Claris/AppleWorks, for many years to fulfill word processing,

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Working with Excel in Origin

Working with Excel in Origin Working with Excel in Origin Limitations When Working with Excel in Origin To plot your workbook data in Origin, you must have Excel version 7 (Microsoft Office 95) or later installed on your computer

More information

Analyzing Data Using Excel

Analyzing Data Using Excel Analyzing Data Using Excel What you will do: Create a spreadsheet Use formulas and basic formatting Import text files Save worksheets as web pages Add interactivity to web worksheets Use pivot tables Create

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

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

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

Workspaces Creating and Opening Pages Creating Ticker Lists Looking up Ticker Symbols Ticker Sync Groups Market Summary Snap Quote Key Statistics

Workspaces Creating and Opening Pages Creating Ticker Lists Looking up Ticker Symbols Ticker Sync Groups Market Summary Snap Quote Key Statistics Getting Started Workspaces Creating and Opening Pages Creating Ticker Lists Looking up Ticker Symbols Ticker Sync Groups Market Summary Snap Quote Key Statistics Snap Report Price Charts Comparing Price

More information

GIS IN ECOLOGY: GIS PROJECT ISSUES

GIS IN ECOLOGY: GIS PROJECT ISSUES GIS IN ECOLOGY: GIS PROJECT ISSUES Contents Introduction... 2 Conducting a GIS Analysis... 2 GIS File Management and Software... 3 Course Data Sources... 6 Tasks... 7 Copying GIS Data... 7 Managing Data

More information

Introduction to GIS software

Introduction to GIS software Introduction to GIS software There are a wide variety of GIS software packages available. Some of these software packages are freely available for you to download and could be used in your classroom. ArcGIS

More information

Raster to Vector Conversion for Overlay Analysis

Raster to Vector Conversion for Overlay Analysis Raster to Vector Conversion for Overlay Analysis In some cases, it may be necessary to perform vector-based analyses on a raster data set, or vice versa. The types of analyses that can be performed on

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

ArcFuels Supplemental Material: GIS 9.x Tips and Tricks

ArcFuels Supplemental Material: GIS 9.x Tips and Tricks ArcFuels Supplemental Material: GIS 9.x Tips and Tricks Supplemental material: GIS Tips and Tricks... 1 Shapefiles: Points, Lines, and Polygons... 2 Creating a New Shapefile (point, line, or polygon)...

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Access Database Design

Access Database Design Access Database Design Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk -- 293-4444 x 1 http://oit.wvu.edu/support/training/classmat/db/ Instructors:

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

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

Data Interoperability Extension Tutorial

Data Interoperability Extension Tutorial Data Interoperability Extension Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents About the Data Interoperability extension tutorial...................... 3 Exercise 1: Using direct-read

More information

User Manual for the SAP Business Objects BI Platform 4.1 System (BI Suite) CONTENTS

User Manual for the SAP Business Objects BI Platform 4.1 System (BI Suite) CONTENTS User Manual for the SAP Business Objects BI Platform 4.1 System (BI Suite) CONTENTS Section 1: Getting Started with BI Suite In this section you will learn how to log in to BI Suite, find, open and view

More information

Getting Started The Windows SharePoint Services Window

Getting Started The Windows SharePoint Services Window QUICK Source Microsoft Windows SharePoint Services 3.0 for Windows Server 2003 Getting Started The Windows SharePoint Services Window Browser Toolbars - allow the user to navigate in the browser. Link

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

How to georectify an image in ArcMap 10

How to georectify an image in ArcMap 10 How to georectify an image in ArcMap 10 The University Library has a large collection of historical aerial photos for some North Carolina Counties ( http://www.lib.unc.edu/reference/gis/usda/index.html

More information

LYON COUNTY GEOMOOSE 2 HELP DOCUMENT

LYON COUNTY GEOMOOSE 2 HELP DOCUMENT LYON COUNTY GEOMOOSE 2 HELP DOCUMENT TABLE OF CONTENTS Lyon County Geomoose 2 Help Document... 1 Introduction... 3 Quick Reference Chart... 4 The Interface... 4 The Table of Contents... 5 Quick Reference

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption

Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption Name: Geography 3251: Mountain Geography Assignment III: Natural hazards A Case Study of the 1980s Mt. St. Helens Eruption Learning Objectives: Assigned: May 30, 2012 Due: June 1, 2012 @ 9 AM 1. Learn

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

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Introduction to GIS Using ArcGIS Desktop 10

Introduction to GIS Using ArcGIS Desktop 10 Introduction to GIS Using ArcGIS Desktop 10 Last Modified: January 2012 This reference and training manual was produced by the University of Maryland Libraries. Permission to reproduce this manual or any

More information

Introduction to GIS Mapping and ESRI s ArcGIS Software

Introduction to GIS Mapping and ESRI s ArcGIS Software 01-Introduction To GIS Mapping And Arcgis 9.2 Software.Doc Page 1 of 25 Objectives Introduction to GIS Mapping and ESRI s ArcGIS Software In this exercise you are introduced to the ArcMap interface and

More information

Australian Hydrological Geospatial Fabric (Geofabric) Tutorial. Access Water Storage information

Australian Hydrological Geospatial Fabric (Geofabric) Tutorial. Access Water Storage information Australian Hydrological Geospatial Fabric (Geofabric) Tutorial Access Water Storage Version 2.1 November 2012 Contact details Geospatial Data Unit Bureau of Meteorology GPO Box 2334 CANBERRA ACT 2601

More information

Almyta Control System Advanced Reference Contents

Almyta Control System Advanced Reference Contents Almyta Control System Advanced Reference Contents Almyta Control System Advanced Reference... 1 Software Maintenance... 2 Sharing Your Local Company with Other Users. Networked Installation.... 5 Connecting

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

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information