Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater.

Size: px
Start display at page:

Download "Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater."

Transcription

1 Overview: In this week's lab you will identify areas within Webster Township that are most vulnerable to surface and groundwater contamination by conducting a risk analysis with raster data. You will create a contamination risk index based on three variables: Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater. Elevation: variability is used as a surrogate for slope steepness, which affects the rate of lateral movement (we'll see better ways to calculate slope later). Nearness to water: determines how much movement is required to get the water into surface water bodies. All of these variables are spatially continuous (i.e., fields) and determine how likely water contaminated by surface processes at a site will reach the hydrologic system. The method you will use involves performing a weighted raster overlay that combines multiple layers and creates a composite risk score. For more information, go to Help menu and access Spatial Analysis toolbox/ Overlay toolset/ Understanding overlay analysis. The input datasets for this lab are the same soils, land-use, and streams feature classes as those you used in Lab 8. The source of the data is the Southeastern Michigan Council of Governments ( In addition, there is a digital elevation model (raster) from the Michigan Center for Geographic Information s Data Library ( You will use these data to create grids that represent three criteria: An index of soil texture: you will use the soils feature class to create a grid that represents the percent sand (a measure of texture) for each cell. An index of elevation variability: from the elevation data you will create a grid that indexes the variation in elevation surrounding a cell. An index of the nearness to water body features: using the land-use and streams feature classes you will create grids that index the proximity (i.e., the inverse of distance) to important surface water features (open water, wetlands, and streams). All of these grids will be adjusted to a standard range of values and then an overall weighted average index will be created. You will create, manipulate, and combine raster datasets (grids) using ArcGIS Desktop's Spatial Analyst Extension. **Important: throughout the exercise, you should view each of the datasets, look-up tables, and grids you create in ArcMap or ArcCatalog to be sure that their patterns conform with your expectations. This is a good way for you to evaluate (a) your understanding of the processes used to create the grids, and/or (b) the successful completion of each step as you proceed.

2 Learning Objectives: To understand raster-based software operations for performing analysis To understand raster overlay To work through an example of the weighting and rating of risk analysis To explore different ways of displaying raster data To be able to read and create flowcharts illustrating data processing steps To be submitted: 1. (10 pts) A write-up (up to 500 words) answering the questions throughout the lab. 2. (5 pts) A map (8.5 x 11 ) of contamination vulnerability as directed within the lab. Procedure: 0. Open ArcMap and add the layers from the geodatabase in the Lab10 data package: soils, streams, landuse and websterdem. Explore your data. 1. Activating Spatial Analysis tools: We will be using Spatial Analyst extension tools to analyze the data. First, it is required to activate the extension. To activate the tool, go to the Customize menu and select Extensions, and check Spatial Analyst. Close the window. Note: If you are using computers in University labs or on virtual sites, you will have to do this every time you log into a new computer. Otherwise, you will get an error message when you try to run one of the Spatial Analyst tools Setting your workspace: The following steps are important to guarantee that the output files are saved in your directory. Also, you will set the extent and resolution of output files in order to ensure that all the grids you make match up with each other. Go to the Geoprocessing menu and select Environments. The Environment Settings window will open. You are going to modify the following fields: Workspace: For the fields Current Workspace and Scratch Workspace, select your working directory. Page 2 of 15

3 Processing Extent: For the option Extent, select Same as layer landuse. This extent will be applied to all grids created unless changed (Note: you do not have to set this for each new grid with the same extent or for analyses where it is not important to keep the extent uniform among the outputs). For the option Snap to raster select the digital elevation model (websterdem). This option allows you to align the output layers to match the snap raster layer. Raster Analysis: Indicate that the Cell size is the same as websterdem 2. Data preparation: 2.1. Soil texture: For the purposes of this project, you will be converting the three vector layers into raster format. You will begin by creating a grid based on soil type (percentage sand) to assess how quickly water percolates through the ground at each location. Open the Soils attribute table and examine the different fields. We will be using the SURFTEX field to determine soil type, but notice that this field contains nominal data. We need to translate these soil type names into numbers that represent percentage of sand in that given soil type. This information is in the soil_lut table. You will need to join the table of the soil feature class with the soil_lut table. Note: For each step, you will find a flow chart of the process you will perform. When performing GIS analyses it is a good idea to document every step you take, especially those that result in a new dataset. Illustrating the steps using a flow chart can help you understand the overall process, find possible errors in the steps, keep a record of the name of the output files and help you explain to others what you did to reach your final result. On the last page you will find a flow chart of the entire process you will perform in this lab; use it as a reference as you work through the lab. Page 3 of 15

4 2.1.1 Joining tables Add the soil_lut table to the Table of Contents (TOC). Open and examine this table. Right-click on the Soils feature class in the TOC and choose Joins and Relates Join. In the first field (Choose the field in this layer that the join will be based on) select SURFTEX. In the second field (Choose the table to join this layer, or load the table from the disk) select soil_lut. Finally, in the third field (Choose the field in the table to base the join on) select SURFTEX. In the Join Options check Keep all records. Click OK. Open the soils attribute table and examine the changes Rasterizing: Converting vector data to raster grids In ArcToolbox, select Conversion Tools To Raster Features to Raster. Select soils as the Input features. Select soil_lut:persand as Field. As you already define the output of the raster resolution, the value 30 is automatically indicated (this resolution corresponds to the native resolution of the DEM). Name the Output raster soilsgrid. Make sure the output file location is your lab folder. Indicate OK and the grid will be created. NOTE: Grid names cannot exceed 13 characters, or an error message will be generated Nearest to water For the second risk factor, you would need to create a file that contains all the different water sources (e.g. streams, wetlands, lakes) in the study site. In this case, you will require the information of two different files: 1) landuse (polygon feature class), specifically water and wetland classes; and 2) streams (line feature class). You will later combine these two grids into one grid that represents all water features Rasterizing: Converting vector data to raster grids First rasterize the streams feature class as you did the soils dataset. Choose STREAMS_ as the field and a Cell size of 30. The output raster can be named streamgrid. Page 4 of 15

5 Now you will create a raster of water bodies (water and wetland classes) from the landuse feature classes. Because there are multiple land-use types in the land-use feature class, it is useful to first encode the polygons of interest (those representing water or wetlands) with a 1, and all others with a 0. The wawet_lut table, based on a LEVEL1 land-use code, does exactly that. Join the landuse layer and the wawet_lut table. LEVEL1 is the field that the join will be based on for both the layer and the table. You might get a warning message indicating the tables are not indexed; don t worry and click OK. Rasterize the landuse feature class. Use wawet_lut:watorwet as the Field, the same Cell size as before (30), and name it watlugrid for the Output raster. Be sure to examine the grids you have made (soilsgrid, streamgrid, watlugrid) in ArcMap and verify that they make sense to you Proximity to Water: Reclassifying raster data To create a layer that represents proximity to water bodies, you need to create a grid of distances to water sources. To do this, you will (1) reclassify the data, (2) combine the two water grids into one, and (3) run a distance operation that creates the new distance to water value for each cell. Before you can union the two water feature grids, you need to make a slightly different streams grid. If you observe the streamsgrid file you just created, you will notice that the streams have pixel values ranging from 1 to 111 and that the pixels of areas that do not represent streams do not have a value; in other words those pixels have been assigned as NoData values. In this case, the "NoData" value was assigned to locations with no data when converting from vector features to raster. Every cell location in a raster has a value assigned to it. When information is unavailable for a cell location, the location will be assigned NoData. NoData and 0 are not the same 0 is a valid value. 1 The problem with keeping NoData values in grid analysis is that any pixel identified as NoData in a grid will be assigned as NoData for that specific cell location when being combined with other grid features. So you have the risk of losing information in your output analysis grids, i.e. these NoData areas will be left blank in your output raster. You will use the reclassify operation to assign a value to the NoData cells: In ArcToolbox select Spatial Analysis Tools Reclass Reclassify. In the Input raster field select 1 ESRI, ArcGIS Desktop Help: NoData and how it affects analysis. Page 5 of 15

6 streamgrid. The Reclass field is VALUE. Select Classify. A window similar to the one used to classify symbology value data in Lab 2 will open. This is the Classification window. In this case, the classification method is irrelevant as we only need to group all the values into one class. Indicate 1 in the number of classes and select OK. Back in the Reclassify window, under the section Reclassification you will see two columns, one called Old values and the other, New values. Also, you will see two rows, the first row has the range from in the Old Value column and a 1 in the New Value. The second row contains the Nodata values. Type the value 0 under the New Values column. Define the output raster as streamgrid2 in your working directory and press OK. This will create the new reclassified grid Proximity to Water: Combining two grids In ArcToolbox select, Spatial Analyst Tools Map Algebra Raster Calculator. You will overlay both layers to create a new grid with the information from streamgrid2 and watlugrid. The operator you are going to use is UNION; employing the BOOLEAN operator OR. Launch the Raster Calculator. It looks like a regular calculator, however, as you can see, all the available raster data in the TOC are listed under the Layers section. Functions available include: Arithmetic, Trigonometric, Logarithmic, and Power and Boolean operators. To introduce an expression on the raster calculator, select the raster that you are going to use on the Layer list and double click on it, then click on the function you like to use. For our lab, introduce the following expression: Page 6 of 15

7 streamgrid2 OR watlugrid However, notice that on the calculator the function OR will be represented with the symbol, so the expression on the raster calculator would look like this: streamgrid2 watlugrid Name the output layers wetgrid. Click OK Proximity to Water: Calculating distance in rasters The Euclicidian Distance operation calculates Euclidean distance from a cell with a value to each NoData cell of the grid. For this reason, you need to create a grid in which cells that do not represent water features are NoData instead of zero. Reclassify the wetgrid layer so that all zeroes are given a NoData value and all cells representing wet areas are 1. Call the new output grid wetgrid2. In ArcToolbox, select Spatial Analyst Tools Distance Euclidean Distance. In the Euclidean Distance dialog box, select wetgrid2, as the input file. Call the Output distance raster distwetgrid. Leave the other fields with the default values. Indicate OK. Inspect your new distwetgrid layer. If you do not remember how Euclidian Distance is calculated, consult the lecture notes from the class Distance and Buffer. The summary of the steps employed to create distances to water is summarized in this flow chart: Page 7 of 15

8 3.2. Elevation variable Employing Neighborhood Focal Statistics to modify raster data The final variable to be included in the risk assessment is variation in elevation, which will serve as a proxy for the steepness of an area. We will calculate this variable using a digital elevation model (DEM) and assigning each cell a value that corresponds to the range in elevation among its neighbors. In ArcToolbox select, Spatial Analyst Tools Neighborhood Focal Statistics. Use the following specifications (as shown in the image to the right). o Input raster: websterdem o Output raster: demvar. o Neighborhood: Rectangle o Neighborhood Settings: H = 3 & W = 3 o Units: Cell o Statistic type: Range Examine the new grid in ArcMap. The summary of the preceding steps is illustrated in the following flow chart: Page 8 of 15

9 You should understand what the Focal Statistics operation does. Check the Help menu if you need clarification. Question 1 (2 points): Explain the difference between "NoData" and "0" values in a raster grid and how each is used in calculating raster distance grids. 4. Stretching raster data values At this point you have three grids: soilsgrid, demvar, and distwetgrid (you can now remove any other grids or feature classes from ArcMap). These grids represent indices of soil texture, elevation variability, and distance to water features, respectively. To combine them and create a weighted-average index that represents site risk based upon these three criteria, you need to stretch the values of the grids to a range between 0 and 100 so that all three criteria have the same relative measurement scale. You can do this using the Raster Calculator but first you would need to determine the Maximum Value and Minimum Value of each of the current grids. There are different ways to determine a grid s minimum and maximum values. One of them is from the TOC right-click on the soilsgrid grid and select Properties, and check the Source tab. Scroll down and check the field Statistics. Write down the MIN and MAX values. Repeat this procedure for demvar, and distwetgrid. Use the following table to record the max and min values from the other grids: Dataset Minimum value Maximum value (GRIDMin) (GRIDMax) soilsgrid 5 80 demvar distwetgrid 3.3. Creating a common relative scale measurement among layers Construct the following expression in the Raster Calculator to stretch the soilsgrid grid from a range of 5-80 to a range of The conceptual format of the equation takes the following form: (ssssssss cccccccc vvvvvvvvvv gggggggg mmmmmmmmmmmmmm) 100 gggggggg mmmmmmmmmmmmmm gggggggg mmmmmmmmmmmmmm Page 9 of 15

10 To avoid errors, use the raster calculator keyboard Introduce the following expression to stretch soilsgrid: (("soilsgrid" - 5) * 100) / (80-5) Call the output field soil_stre (Output raster field). Click OK. Examine the output file. Go through the same process for demvar with the values you recorded: (("demvar" min) * 100) / (max min) Call the output DEM_stre (Output raster field). Click OK. Examine the output file. The nearness of water body variable implies that the closer a cell is to a water body, the higher the risk value it should be. If you view the distance grid "distwetgrid", you will notice that the values increase with increasing distance from the water features. This is the inverse of the required measurement scale, so it will be necessary to invert the distance grid values. To make a layer that represents inverse distance, first stretch the image from (("distwetgrid" - min) * 100) / (max-min) Name output file Wet_stre. Examine your output. Verify that the lowest values occur CLOSEST to the water. To invert the values of the Wet_stre grid, use the raster calculator and subtract all values in the raster from 100. (100 - "Wet_stre") Name the output file NearWetGrid. Examine your output. Verify that the higher values are closest to the water bodies. Be sure to examine your output in ArcMap/ArcCatalog to make sure that the output grid values make sense. The stretch procedure is described in the following flow chart. Page 10 of 15

11 4. Creating the overall risk index (weighted average) Your last step is to create a new grid by combining the soil_stre, DEM_stre, and NearWetGrid grids. You will combine them using a weighted average. In short, you should perform a summation, with each grid weighted (i.e., multiplied by some fraction to represent the relative importance of the layer). In Raster Calculator, build the following expression to create a map depicting the following weights: Call the output file risk_index (0.4 * "soil_stre" * "DEM_stre" * "NearWetGrid") In ArcMap, compare the grid you have just made with the grids that were used to create it to confirm that it is what you would expect. Page 11 of 15

12 Select one different set of weights for the three factors (remember: the weights across the three factors must sum to 1). Use Raster Calculator to calculate a new index grid based on this alternative set of weights. Question 2 (3 points): Write out the equation (similar to the one written above) used for your alternative set of weights. How did this affect your risk analysis? Explain what you were trying to achieve conceptually and if you feel the resulting grid accurately represents what you were trying to achieve. 5. Displaying raster data In ArcMap, there are different ways of displaying raster grids in your layouts, including Stretched or Classified. You should classify your raster data into categories (i.e., low, medium, and high risk) for purposes of display. To do this, right-click on your raster risk file (TOC) and select Properties Symbology. Select Classified and click Yes if asked to create a histogram. The Classified option will let you classify your image by different classification schemes (Review Lab 2 for more info). Note that one s choices of classification is arbitrary, so the legend should include information on what low med and high mean numerically. NOTE: If the colors are displayed as Stretched and the color-ramp goes the opposite direction as you would like it to, double-click on the color ramp in the TOC and a pop-up window will appear giving you the option of inverting the color ramp. If the data are classified, rightclick on one of the color patches in the Layer Properties Symbology tab and select Flip colors Page 12 of 15

13 Map to Submit (5 points): Create a complete map that best conveys the range of risk to surface and groundwater contamination across Webster Township based upon the original weighted average of the three criteria. Designate three classes of distinction: high, moderate, and low. Within your map include a text box that explains what the risk index is based upon (i.e. describe soil_stre, DEM_stre, and NearWetGrid), and the relative weights given to each. Question 3 (10 points): Option 1. Think back to the analysis you proposed in your first lab and the layers used in your Lab 6 report. Using the spatial data layers you described there (or any other layers you would ideally like to have), construct a hypothetical series of processing steps (using raster or vector analysis tools, or both) which you could apply to those layers to address a component of your proposed research question. This will be useful if you eventually plan to analyze your own data in the upcoming Lab 12. 1) Succinctly (no more than 1-2 sentences), state the goal of these processing steps in terms of the analysis* question they will allow you to address. (*simply combining or simplifying data is not enough. You must be addressing an analysis question. If you are unsure, ask your GSI). 2) Draw a flowchart similar to the one on the last page of this lab. You could use any of the analytical tools we have learned in Labs 8, 9 and 10 such as select, intersect, clip, union, erase, dissolve, reclassify, buffer, join and raster calculations as appropriate to your data processing goals. Use succinct text under each step or footnotes to explain key parameters (e.g. what will be reclassified, what equation will be used in raster calculator, etc). Include a total of between 5 and 10 processing operations. If you exceed this limit, you will only be graded for the first 10 operations! If 10 operations are not sufficient to generate your original final data product, limit yourself to a subset of your analysis. Note: You do not actually have to execute this plan but it should be plausible! Option 2. If you prefer to consider a predefined scenario, answer the following question instead of the above. You will describe a series of processing steps which you could apply to data layers (using raster or vector analysis tools, or both) that you would consider important to address the problem. The problem: You are the GIS analyst for EnviroWaste consulting company. The company is creating a solid waste management plan for the city of Kalamazoo (MI, including the establishment of a new landfill. Your task is to identify suitable sites for the new landfill using the following criteria: a. It cannot be located near open water (rivers, lakes, or wetlands). b. It cannot be located near urban and rural residential areas. c. It cannot be established within protected areas or forest land. d. It has to be accessible (nearby roads or train tracks) e. It should avoid permeable soil types (prefer soil with low %sand) Your task: 1. Identify data layers that you consider representative of the criteria cited above Page 13 of 15

14 2. Describe the data (indicate the original format and attributes required for the analysis). 3. Draw a flowchart similar to the one on the last page of this lab. You could use any of the analytical tools we have learned in Labs 8, 9 and 10 such as select, intersect, clip, union, erase, dissolve, reclassify, buffer, join and raster calculations, as appropriate to your data processing goals. Use succinct text under each step or footnotes to explain key parameters (e.g. what will be reclassified, what equation will be used in raster calculator, etc). Note: You do not actually have to execute this plan but it should be plausible! -- End of Lab 10 (flow chart on next page) Page 14 of 15

15 Page 15 of 15

Module 7 Raster operations

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

More information

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O TOPICS COVERED Spatial Analyst basics Raster / Vector conversion Raster data

More information

Raster Data Model & Analysis

Raster Data Model & Analysis Topics: 1. Understanding Raster Data 2. Adding and displaying raster data in ArcMap 3. Converting between floating-point raster and integer raster 4. Converting Vector data to Raster 5. Querying Raster

More information

Lab 10: Raster Analyses

Lab 10: Raster Analyses Lab 10: Raster Analyses What You ll Learn: Spatial analysis and modeling with raster data. You will estimate the access costs for all points on a landscape, based on slope and distance to roads. You ll

More information

Lab 12: Sampling and Interpolation

Lab 12: Sampling and Interpolation Lab 12: Sampling and Interpolation What You ll Learn: -Systematic and random sampling -Majority filtering -Stratified sampling -A few basic interpolation methods Videos that show how to copy/paste data

More information

STUDENT PAGES GIS Tutorial Treasure in the Treasure State

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

More information

INTRODUCTION TO GIS WORKSHOP EXERCISE

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

More information

GEOG 487 Lesson 8: Step-by-Step Activity

GEOG 487 Lesson 8: Step-by-Step Activity GEOG 487 Lesson 8: Step-by-Step Activity Part I: Review the Relevant Data Layers and Organize the Map Document In Part I, we will review the starting datasets and organize the map document for analysis.

More information

RASTER ANALYSIS GIS Analysis Fall 2013

RASTER ANALYSIS GIS Analysis Fall 2013 RASTER ANALYSIS GIS Analysis Fall 2013 Raster Data The Basics Raster Data Format Matrix of cells (pixels) organized into rows and columns (grid); each cell contains a value representing information. What

More information

Spatial Analysis with Raster Datasets

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

More information

Using GIS to Site Minimal Excavation Helicopter Landings

Using GIS to Site Minimal Excavation Helicopter Landings Using GIS to Site Minimal Excavation Helicopter Landings The objective of this analysis is to develop a suitability map for aid in locating helicopter landings in mountainous terrain. The tutorial uses

More information

ENGRG Introduction to GIS

ENGRG Introduction to GIS ENGRG 59910 Introduction to GIS Michael Piasecki April 3, 2014 Lecture 11: Raster Analysis GIS Related? 4/3/2014 ENGRG 59910 Intro to GIS 2 1 Why we use Raster GIS In our previous discussion of data models,

More information

Ex. 4: Locational Editing of The BARC

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

More information

RASTER ANALYSIS GIS Analysis Winter 2016

RASTER ANALYSIS GIS Analysis Winter 2016 RASTER ANALYSIS GIS Analysis Winter 2016 Raster Data The Basics Raster Data Format Matrix of cells (pixels) organized into rows and columns (grid); each cell contains a value representing information.

More information

Masking Lidar Cliff-Edge Artifacts

Masking Lidar Cliff-Edge Artifacts Masking Lidar Cliff-Edge Artifacts Methods 6/12/2014 Authors: Abigail Schaaf is a Remote Sensing Specialist at RedCastle Resources, Inc., working on site at the Remote Sensing Applications Center in Salt

More information

Priming the Pump Stage II

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

More information

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4

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

More information

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Written by Gabriel Holbrow and Barbara Parmenter, revised on10/22/2018 for 10.6.1 Raster Suitability Analysis: Siting a

More information

Lesson 8 : How to Create a Distance from a Water Layer

Lesson 8 : How to Create a Distance from a Water Layer Created By: Lane Carter Advisor: Paul Evangelista Date: July 2011 Software: ArcGIS 10 Lesson 8 : How to Create a Distance from a Water Layer Background This tutorial will cover the basic processes involved

More information

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

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

More information

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

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

More information

GEOGRAPHIC INFORMATION SYSTEMS Lecture 18: Spatial Modeling

GEOGRAPHIC INFORMATION SYSTEMS Lecture 18: Spatial Modeling Spatial Analysis in GIS (cont d) GEOGRAPHIC INFORMATION SYSTEMS Lecture 18: Spatial Modeling - the basic types of analysis that can be accomplished with a GIS are outlined in The Esri Guide to GIS Analysis

More information

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China

Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Raster Suitability Analysis: Siting a Wind Farm Facility North Of Beijing, China Written by Gabriel Holbrow and Barbara Parmenter, revised by Carolyn Talmadge 11/2/2015 INTRODUCTION... 1 PREPROCESSED DATA

More information

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

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

More information

Stream Network and Watershed Delineation using Spatial Analyst Hydrology Tools

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

More information

Lab 11: Terrain Analyses

Lab 11: Terrain Analyses Lab 11: Terrain Analyses What You ll Learn: Basic terrain analysis functions, including watershed, viewshed, and profile processing. There is a mix of old and new functions used in this lab. We ll explain

More information

Lab 10: Raster Analyses

Lab 10: Raster Analyses Lab 10: Raster Analyses What You ll Learn: Spatial analysis and modeling with raster data. You will estimate the access costs for all points on a landscape, based on slope and distance to roads. You ll

More information

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS HOUSEKEEPING Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS CONTOURS! Self-Paced Lab Due Friday! WEEK SIX Lecture RASTER ANALYSES Joe Wheaton YOUR EXCERCISE Integer Elevations Rounded up

More information

Exercise 5. Height above Nearest Drainage Flood Inundation Analysis

Exercise 5. Height above Nearest Drainage Flood Inundation Analysis Exercise 5. Height above Nearest Drainage Flood Inundation Analysis GIS in Water Resources, Fall 2018 Prepared by David G Tarboton Purpose The purpose of this exercise is to learn how to calculation the

More information

GEO 465/565 Lab 6: Modeling Landslide Susceptibility

GEO 465/565 Lab 6: Modeling Landslide Susceptibility 1 GEO 465/565 Lab 6: Modeling Landslide Susceptibility This lab will give you more practice in understanding and building a GIS analysis model. Recall from class lecture that a GIS analysis model is a

More information

GIS LAB 8. Raster Data Applications Watershed Delineation

GIS LAB 8. Raster Data Applications Watershed Delineation GIS LAB 8 Raster Data Applications Watershed Delineation This lab will require you to further your familiarity with raster data structures and the Spatial Analyst. The data for this lab are drawn from

More information

Exercise 4 Compiling a Spatial Database: Adding and Linking Attribute Data

Exercise 4 Compiling a Spatial Database: Adding and Linking Attribute Data Geog, IES 377/Cee 357 Exercise 4 Page: 1/9 GEOG 377/CEE 357: An Introduction to Geographic Information Systems Exercise 4 Compiling a Spatial Database: Adding and Linking Attribute Data 1. Introduction

More information

Field-Scale Watershed Analysis

Field-Scale Watershed Analysis Conservation Applications of LiDAR Field-Scale Watershed Analysis A Supplemental Exercise for the Hydrologic Applications Module Andy Jenks, University of Minnesota Department of Forest Resources 2013

More information

GIS Workbook #1. GIS Basics and the ArcGIS Environment. Helen Goodchild

GIS Workbook #1. GIS Basics and the ArcGIS Environment. Helen Goodchild GIS Basics and the ArcGIS Environment Helen Goodchild Overview of Geographic Information Systems Geographical Information Systems (GIS) are used to display, manipulate and analyse spatial data (data that

More information

Lab 11: Terrain Analyses

Lab 11: Terrain Analyses Lab 11: Terrain Analyses What You ll Learn: Basic terrain analysis functions, including watershed, viewshed, and profile processing. There is a mix of old and new functions used in this lab. We ll explain

More information

Lab 7: Tables Operations in ArcMap

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

More information

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham Getting Started with Spatial Analyst Steve Kopp Elizabeth Graham Spatial Analyst Overview Over 100 geoprocessing tools plus raster functions Raster and vector analysis Construct workflows with ModelBuilder,

More information

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

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

More information

Stream network delineation and scaling issues with high resolution data

Stream network delineation and scaling issues with high resolution data Stream network delineation and scaling issues with high resolution data Roman DiBiase, Arizona State University, May 1, 2008 Abstract: In this tutorial, we will go through the process of extracting a stream

More information

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

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

More information

Pond Distance and Habitat for use in Wildlife Modeling

Pond Distance and Habitat for use in Wildlife Modeling Pond Distance and Habitat for use in Wildlife Modeling These instructions enable you to aggregate layers within a study area, calculate new fields, and create new data out of existing data, for use in

More information

Module 10 Data-action models

Module 10 Data-action models Introduction Geo-Information Science Practical Manual Module 10 Data-action models 10. INTRODUCTION 10-1 DESIGNING A DATA-ACTION MODEL 10-2 REPETITION EXERCISES 10-6 10. Introduction Until now you have

More information

Georeferencing Imagery in ArcGIS 10.3.x

Georeferencing Imagery in ArcGIS 10.3.x Georeferencing Imagery in ArcGIS 10.3.x Georeferencing is the process of aligning imagery (maps, air photos, etc.) with spatial data such as point, lines or polygons (for example, roads and water bodies).

More information

Delineating Watersheds from a Digital Elevation Model (DEM)

Delineating Watersheds from a Digital Elevation Model (DEM) Delineating Watersheds from a Digital Elevation Model (DEM) (Using example from the ESRI virtual campus found at http://training.esri.com/courses/natres/index.cfm?c=153) Download locations for additional

More information

Lab 12: Sampling and Interpolation

Lab 12: Sampling and Interpolation Lab 12: Sampling and Interpolation What You ll Learn: -Systematic and random sampling -Majority filtering -Stratified sampling -A few basic interpolation methods Data for the exercise are in the L12 subdirectory.

More information

Introduction to GIS 2011

Introduction to GIS 2011 Introduction to GIS 2011 Digital Elevation Models CREATING A TIN SURFACE FROM CONTOUR LINES 1. Start ArcCatalog from either Desktop or Start Menu. 2. In ArcCatalog, create a new folder dem under your c:\introgis_2011

More information

Working with Elevation Data URPL 969 Applied GIS Workshop: Rethinking New Orleans After Hurricane Katrina Spring 2006

Working with Elevation Data URPL 969 Applied GIS Workshop: Rethinking New Orleans After Hurricane Katrina Spring 2006 Working with Elevation Data URPL 969 Applied GIS Workshop: Rethinking New Orleans After Hurricane Katrina Spring 2006 This GIS lab exercise will explore Light Detection And Ranging (LiDAR) data for New

More information

Explore some of the new functionality in ArcMap 10

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

More information

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

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

More information

Basics of Using LiDAR Data

Basics of Using LiDAR Data Conservation Applications of LiDAR Basics of Using LiDAR Data Exercise #2: Raster Processing 2013 Joel Nelson, University of Minnesota Department of Soil, Water, and Climate This exercise was developed

More information

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

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

More information

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

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

More information

Raster: The Other GIS Data

Raster: The Other GIS Data Raster_The_Other_GIS_Data.Docx Page 1 of 11 Raster: The Other GIS Data Objectives Understand the raster format and how it is used to model continuous geographic phenomena. Understand how projections &

More information

Watershed Sciences 4930 & 6920 ADVANCED GIS

Watershed Sciences 4930 & 6920 ADVANCED GIS Slides by Wheaton et al. (2009-2014) are licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License Watershed Sciences 4930 & 6920 ADVANCED GIS VECTOR ANALYSES Joe Wheaton

More information

Raster Analysis and Functions. David Tenenbaum EEOS 465 / 627 UMass Boston

Raster Analysis and Functions. David Tenenbaum EEOS 465 / 627 UMass Boston Raster Analysis and Functions Local Functions By-cell operations Operated on by individual operators or by coregistered grid cells from other themes Begin with each target cell, manipulate through available

More information

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham

Getting Started with Spatial Analyst. Steve Kopp Elizabeth Graham Getting Started with Spatial Analyst Steve Kopp Elizabeth Graham Workshop Overview Fundamentals of using Spatial Analyst What analysis capabilities exist and where to find them How to build a simple site

More information

Practical Manual. Introduction Geo information Science (GRS 10306) B. Kempen, W.TH. ten Haaf (Ed.)

Practical Manual. Introduction Geo information Science (GRS 10306) B. Kempen, W.TH. ten Haaf (Ed.) Laboratory of Geographical Information Science and Remote Sensing Centre for Geo Information Introduction Geo information Science (GRS 10306) Practical Manual B. Kempen, W.TH. ten Haaf (Ed.) September

More information

Raster GIS applications

Raster GIS applications Raster GIS applications Columns Rows Image: cell value = amount of reflection from surface DEM: cell value = elevation (also slope/aspect/hillshade/curvature) Thematic layer: cell value = category or measured

More information

LAB 1: Introduction to ArcGIS 8

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

More information

Basic Tasks in ArcGIS 10.3.x

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

More information

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University Lecture 6: GIS Spatial Analysis GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University 1 Spatial Data It can be most simply defined as information that describes the distribution

More information

Lab 9. Raster Analyses. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

Lab 9. Raster Analyses. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Lab 9 Raster Analyses Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University How to Interpolate Surface Turn on the Spatial Analyst extension: Tools > Extensions >

More information

Lab 10: Raster Analyses

Lab 10: Raster Analyses Lab 10: Raster Analyses What You ll Learn: Spatial analysis and modeling with raster data. You will estimate the access costs for all points on a landscape, based on slope and distance to roads. You ll

More information

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS WATS 4930/6920 WHERE WE RE GOING WATS 6915 welcome to tag along for any, all or none WEEK FIVE Lecture VECTOR ANALYSES Joe Wheaton HOUSEKEEPING

More information

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

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

More information

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

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

More information

GIS EXERCISE 4. Department of Urban Studies and Planning Spring 2006 Department of Architecture Site and Urban Systems Planning J / 4.

GIS EXERCISE 4. Department of Urban Studies and Planning Spring 2006 Department of Architecture Site and Urban Systems Planning J / 4. Department of Urban Studies and Planning Spring 2006 Department of Architecture Site and Urban Systems Planning 11.304J / 4.255J GIS EXERCISE 4 Objective: To understand how suitable/costly developable

More information

Model Design and Evaluation

Model Design and Evaluation Model Design and Evaluation The General Modeling Process YES Define Goals Compartments Systematize Add Spatial Dimension Complete? NO Formulate & Flowchart Return Return NO Complete? Deliver Implement

More information

Prioritizing Land with GIS for Environmental Quality Incentives Program (EQIP) Funding Derya Özgöç Çağlar and Richard L.

Prioritizing Land with GIS for Environmental Quality Incentives Program (EQIP) Funding Derya Özgöç Çağlar and Richard L. Page 1 of 13 Prioritizing Land with GIS for Environmental Quality Incentives Program (EQIP) Funding Derya Özgöç Çağlar and Richard L. Farnsworth APPENDIX: GIS Application This exercise will guide you through

More information

GEOG 487 Lesson 7: Step- by- Step Activity

GEOG 487 Lesson 7: Step- by- Step Activity GEOG 487 Lesson 7: Step- by- Step Activity Part I: Review the Relevant Data Layers and Organize the Map Document In Part I, we will review the data and organize the map document for analysis. 1. Unzip

More information

NV CCS USER S GUIDE V1.1 ADDENDUM

NV CCS USER S GUIDE V1.1 ADDENDUM NV CCS USER S GUIDE V1.1 ADDENDUM PAGE 1 FOR CREDIT PROJECTS THAT PROPOSE TO MODIFY CONIFER COVER Released 5/19/2016 This addendum provides instructions for evaluating credit projects that propose to treat

More information

CRC Website and Online Book Materials Page 1 of 16

CRC Website and Online Book Materials Page 1 of 16 Page 1 of 16 Appendix 2.3 Terrain Analysis with USGS DEMs OBJECTIVES The objectives of this exercise are to teach readers to: Calculate terrain attributes and create hillshade maps and contour maps. use,

More information

Exercise 1: An Overview of ArcMap and ArcCatalog

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

More information

Part 6b: The effect of scale on raster calculations mean local relief and slope

Part 6b: The effect of scale on raster calculations mean local relief and slope Part 6b: The effect of scale on raster calculations mean local relief and slope Due: Be done with this section by class on Monday 10 Oct. Tasks: Calculate slope for three rasters and produce a decent looking

More information

A Hands-on Experience with Arc/Info 8 Desktop

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

More information

Introduction to GIS & Mapping: ArcGIS Desktop

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

More information

GIS Fundamentals: Supplementary Lessons with ArcGIS Pro

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

More information

Layer Variables for RSF-type Modelling Applications

Layer Variables for RSF-type Modelling Applications Layer Variables for RSF-type Modelling Applications These instructions for ArcGIS 9.x enable you to create expressions for use in Spatial Analyst s Raster Calculator that result in output grids of continuous

More information

Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones

Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones Hot Spot / Kernel Density Analysis: Calculating the Change in Uganda Conflict Zones Created by Patrick Florance. Revised on 10/22/18 for 10.6.1 OVERVIEW... 1 SETTING UP... 1 ENABLING THE SPATIAL ANALYST

More information

Tutorial 1: Downloading elevation data

Tutorial 1: Downloading elevation data Tutorial 1: Downloading elevation data Objectives In this exercise you will learn how to acquire elevation data from the website OpenTopography.org, project the dataset into a UTM coordinate system, and

More information

GIS IN ECOLOGY: MORE RASTER ANALYSES

GIS IN ECOLOGY: MORE RASTER ANALYSES GIS IN ECOLOGY: MORE RASTER ANALYSES Contents Introduction... 2 More Raster Application Functions... 2 Data Sources... 3 Tasks... 4 Raster Recap... 4 Viewshed Determining Visibility... 5 Hydrology Modeling

More information

GIS IN ECOLOGY: CREATING RESEARCH MAPS

GIS IN ECOLOGY: CREATING RESEARCH MAPS GIS IN ECOLOGY: CREATING RESEARCH MAPS Contents Introduction... 2 Elements of Cartography... 2 Course Data Sources... 3 Tasks... 3 Establishing the Map Document... 3 Laying Out the Map... 5 Exporting Your

More information

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

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

More information

BAEN 673 Biological and Agricultural Engineering Department Texas A&M University ArcSWAT / ArcGIS 10.1 Example 2

BAEN 673 Biological and Agricultural Engineering Department Texas A&M University ArcSWAT / ArcGIS 10.1 Example 2 Before you Get Started BAEN 673 Biological and Agricultural Engineering Department Texas A&M University ArcSWAT / ArcGIS 10.1 Example 2 1. Open ArcCatalog Connect to folder button on tool bar navigate

More information

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

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

More information

Using GIS To Estimate Changes in Runoff and Urban Surface Cover In Part of the Waller Creek Watershed Austin, Texas

Using GIS To Estimate Changes in Runoff and Urban Surface Cover In Part of the Waller Creek Watershed Austin, Texas Using GIS To Estimate Changes in Runoff and Urban Surface Cover In Part of the Waller Creek Watershed Austin, Texas Jordan Thomas 12-6-2009 Introduction The goal of this project is to understand runoff

More information

Steps for Modeling a Proposed New Reservoir in GIS

Steps for Modeling a Proposed New Reservoir in GIS Steps for Modeling a Proposed New Reservoir in GIS Requirements: ArcGIS ArcMap, ArcScene, Spatial Analyst, and 3D Analyst There s a new reservoir proposed for Right Hand Fork in Logan Canyon. I wanted

More information

Terrain Analysis. Using QGIS and SAGA

Terrain Analysis. Using QGIS and SAGA Terrain Analysis Using QGIS and SAGA Tutorial ID: IGET_RS_010 This tutorial has been developed by BVIEER as part of the IGET web portal intended to provide easy access to geospatial education. This tutorial

More information

GIS Workshop Spring 2016

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

More information

Watershed Analysis and A Look Ahead

Watershed Analysis and A Look Ahead Watershed Analysis and A Look Ahead 1 2 Specific Storm Flow to Grate What data do you need? Watershed boundaries for each storm sewer Net flow generated from each point across the landscape Elevation Fill

More information

LAB 9: Buffering and Overlay in ArcGIS - ArcMAP

LAB 9: Buffering and Overlay in ArcGIS - ArcMAP LAB 9: Buffering and Overlay in ArcGIS - ArcMAP What You ll Learn: to apply the concepts of buffering and overlay, two common cartographic operations. You should read chapter 9 in the GIS Fundamentals

More information

Suitability Modeling with GIS

Suitability Modeling with GIS Developed and Presented by Juniper GIS 1/33 Course Objectives What is Suitability Modeling? The Suitability Modeling Process Cartographic Modeling GIS Tools for Suitability Modeling Demonstrations of Models

More information

Lecture 9. Raster Data Analysis. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

Lecture 9. Raster Data Analysis. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Lecture 9 Raster Data Analysis Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Raster Data Model The GIS raster data model represents datasets in which square

More information

Your Prioritized List. Priority 1 Faulted gridding and contouring. Priority 2 Geoprocessing. Priority 3 Raster format

Your Prioritized List. Priority 1 Faulted gridding and contouring. Priority 2 Geoprocessing. Priority 3 Raster format Your Prioritized List Priority 1 Faulted gridding and contouring Priority 2 Geoprocessing Priority 3 Raster format Priority 4 Raster Catalogs and SDE Priority 5 Expanded 3D Functionality Priority 1 Faulted

More information

MODULE 1 BASIC LIDAR TECHNIQUES

MODULE 1 BASIC LIDAR TECHNIQUES MODULE SCENARIO One of the first tasks a geographic information systems (GIS) department using lidar data should perform is to check the quality of the data delivered by the data provider. The department

More information

Geog 459: Geographic Information Systems. Lesson 2 Laboratory Exercise

Geog 459: Geographic Information Systems. Lesson 2 Laboratory Exercise Exercise Description Mapping and interpreting metropolitan growth and decline patterns between 1990 and 2000. Course Concepts Presented Sunbelt region, population redistribution, and metropolitan areas.

More information

Conservation Applications of LiDAR. Terrain Analysis. Workshop Exercises

Conservation Applications of LiDAR. Terrain Analysis. Workshop Exercises Conservation Applications of LiDAR Terrain Analysis Workshop Exercises 2012 These exercises are part of the Conservation Applications of LiDAR project a series of hands on workshops designed to help Minnesota

More information

Lab 12: Sampling and Interpolation

Lab 12: Sampling and Interpolation Lab 12: Sampling and Interpolation What You ll Learn: -Systematic and random sampling -Majority filtering -Stratified sampling -A few basic interpolation methods Data for the exercise are found in the

More information

Raster Data. James Frew ESM 263 Winter

Raster Data. James Frew ESM 263 Winter Raster Data 1 Vector Data Review discrete objects geometry = points by themselves connected lines closed polygons attributes linked to feature ID explicit location every point has coordinates 2 Fields

More information

GEOGRAPHIC INFORMATION SYSTEMS Lecture 02: Feature Types and Data Models

GEOGRAPHIC INFORMATION SYSTEMS Lecture 02: Feature Types and Data Models GEOGRAPHIC INFORMATION SYSTEMS Lecture 02: Feature Types and Data Models Feature Types and Data Models How Does a GIS Work? - a GIS operates on the premise that all of the features in the real world can

More information