Lab 7: Cell, Neighborhood, and Zonal Statistics

Size: px
Start display at page:

Download "Lab 7: Cell, Neighborhood, and Zonal Statistics"

Transcription

1 Lab 7: Cell, Neighborhood, and Zonal Statistics Exercise 1: Use the Cell Statistics function to detect change In this exercise, you will use the Spatial Analyst Cell Statistics function to compare the 1989 to 1992 land cover data for a portion of the Columbia River Estuary, which is near where the Columbia River feeds into the Pacific Ocean. The land cover is classified based on vegetation groups, bare land, water, and developed areas. These data are derived from work accomplished for the NOAA Coastal Change and Analysis Program (C- CAP). People working in C-CAP develop nationally standardized databases of land cover and habitat change in the coastal regions of the United States. Step 1: Open the map document Open the FindChange.mxd map document from your \Lab7Data\ folder. The map depicts 1992 land cover for a portion of the Columbia River Estuary in the northwestern United States. Expand the legend for the Land Cover 1992 layer in the Table of Contents and familiarize yourself with the different land cover types. Turn off the Land Cover 1992 layer to reveal the 1989 land cover for the same area. Toggle the Land Cover 1992 layer on and off. Notice the subtle changes in land cover between 1989 and When you have finished visually comparing the two land cover layers, leave both layers turned on. Step 2: Set the analysis environment Set the Environment Settings as follows: Set the Current Workspace and Scratch Workspace directories to your \Lab7Data\MyData folder Processing Extent: Same as Layer "Estuary Study Area" Raster Analysis cell size: Same as Layer "Land Cover 1992" Step 3: Use the cell statistics function to find areas of change Here you will use the variety statistic, which will count the number of different values occurring at each cell location. Because you are comparing only two raster datasets, change will be revealed when more than one land cover type is counted for a cell. From the Spatial Analyst Tools menu in ArcToolbox, expand the Local menu and double-click Cell Statistics. The Cell Statistics dialog lists the raster datasets in the active Data Frame. Click the Input raster dropdown menu and select Land Cover Add Land Cover 1989 the same way. Click the Overlay statistic dropdown arrow, and click Variety. Click OK. Rename the new layer Variety. The new Variety raster depicts where change has occurred. Step 4: Isolate areas of change with the CON function By default, the Variety raster is classified into nine classes, when in fact, there are only two values: 1 and 2. Open the attribute table for the Variety layer. There are many cells with a value of 1, which indicates no change in value between the two land cover rasters. Cells with a value of 2 indicate where land cover values have changed. You are only interested in areas of change, so you will create a new raster showing only those areas with a value of 2. You will create the new raster with an expression that uses a conditional statement. The expression will state that if a cell value in the Variety raster is greater than 1, then it should be given a value of 10 in the output raster. The conditional statement will not mention what to do with all the 1 values, so they will be given a NoData value in the output raster. By default, NoData values are transparent. 1

2 Close the Attributes of Variety table. Turn off the Variety layer and collapse its legend. Open the Raster Calculator and create this expression: Con("Variety" > 1,10) For the Output Raster change the name to luchange. C lick OK. The luchange raster is added to your map. Notice that only one value, 10, is displayed in the luchange layer legend. Rename the luchange layer Land Cover Change. Change the color of value 10 to black. Now the areas of change stand out against the Land Cover 1992 data. Key points The Cell Statistics function operates on multiple rasters occupying the same geographic space. In essence, it compares them, cell by cell, using a statistical method such as variety. You can use the Cell Statistics function to detect change. To isolate only what you are interested in, you can use another function, such as the CON function. If the cell values in the raster are measurements instead of codes, as in this exercise, the other statistical methods, such as Mean, Standard Deviation, and Sum are useful. Exercise 2: Use the neighborhood function to investigate the edge effect of land cover data A common theme among many research disciplines suggests that the place where different landscape patterns meet is where the action happens. This is called the edge effect. For example, planners and biologists might study areas where urban growth abuts the natural world. Geographers and economists might be interested in where different land uses come together and how markets and people transition between them. Forest managers and wild fire specialists are interested in the change between dominant vegetation types, where ladder fuels can contribute to fire behavior and intensity. The edge effect can vary in intensity. One of the ways to quantify the edge effect is to count the number of different edges occurring within a neighborhood. In this exercise, you are presented with a map of land cover types within a heavily forested area. Dominant vegetation types define the land cover. The patterns of different vegetation types are clearly distinguished, but the relationships between them are not. You will use the ArcGIS Spatial Analyst Neighborhood Statistics function to find the variety of different vegetation types within a specified neighborhood. In doing so, you will quantify the edges. Step 1: Open the map document Open the Landcover.mxd map document from your \Lab7Data\ folder. Land cover is classified as the dominant vegetation type. Compare the map with the Landcover layer legend in the Table of Contents. It appears that MIXED CONIFER FIR and RED FIR are the most dominant species in the study area. The rest of the land cover types are intermixed and distributed throughout the study area in smaller patches. From this perspective, the edge effect or relationships between the various land covers is not clear. Step 2: Examine the land cover layer attribute table Open the attribute table for the vegetation layer. The Landcover layer is a raster dataset. Notice that the data are discrete. Some codes, such as WA and BA, are not vegetation types, but rather the dominant landscape feature. For 2

3 example: Value 10, Vegtype BA, signifies barren landscape, which in this case, could be rock formations where little vegetation exists. The Neighborhood function works well with coded values, but the values must be numbers. Here you will use the Value field in your analysis because each number is unique and represents a specific type of vegetation. Close the table. Step 3: Set the analysis environment Set the Environment Settings as follows: Set the Current Workspace and Scratch Workspace directories to your \Lab7Data\MyData folder Processing Extent: Same as Layer "Study Area" Raster Analysis cell size: Same as Layer "Landcover" Step 4: Create a surface of land cover variety In this step, you will use the neighborhood function to create a new raster dataset that depicts the variety of vegetation types in the study area. In this case, you will use a rectangular neighborhood and the statistic type, variety, which determines a cell s value by counting the number of unique values in the neighborhood. For example, in the following graphic, a neighborhood of 5 cells by 5 cells might only contain 2 different vegetation types (1 = MIXED CONIFER FIR and 5 = RED FIR). Therefore, the value of the corresponding cell in the new raster will be 2. From the Spatial Analyst Tools menu in ArcToolbox, expand the Neighborhood menu, then double-click Focal Statistics. Fill out the Focal Statistics dialog as follows: Input raster Landcover Neighborhood Rectangle Height and Width 5 Units cell Statistic type variety The function will evaluate each cell in the Landcover layer using a 5-cell by 5-cell rectangular neighborhood. The variety statistic will count the number of unique values in the neighborhood and assign that number to the cell in the new raster. Each cell in the Vegetation layer will be evaluated the same way. Click OK. The new layer looks somewhat like a cross-section of a worm farm. One of the reasons for this is that the cell size for this analysis is set to 30 meters, which is fairly small for the study area, and the data values are grouped into contiguous areas, like islands. As the neighborhood passes from one cell to the next, variety increases at the edge or interface of two dominant vegetation types and decreases when the evaluated cell is closer to the center of the island. This has the effect of tracing the edges where vegetation types meet. Rename the new layer Variety. In the Table of Contents, collapse the Variety layer and collapse and turn off the Landcover layer. Step 5: Classify the variety raster By taking a moment to classify the Variety raster, you will be better able to distinguish where variety is highest. For this analysis, say that a cell value of 4 or more vegetation types is 3

4 considered high in variety and cell values of 2 or less are low in variety. Right-click the Variety layer and choose Properties. Click the Symbology tab. Choose Classified. Change the Color Ramp to the Blue Bright color ramp. Click the Classify button. In the Classification dialog, click the Method dropdown arrow and choose Defined Interval. Change the Interval Size to 2. Click OK. In the Layer Properties dialog, change the labels as follows: Based on the Low/Medium/High criteria, most of the study area seems to have a very low amount of variety, at least as far as dominant vegetation is concerned. There does seem to be a correlation between the medium variety areas and the streams, which might lead you to investigate that relationship further (e.g., is the distance to streams correlated with a higher variety). For this exercise, however, you are mainly concerned with finding areas where the intensity of the edge effect is highest. Make the Variety layer 45 percent transparent. Step 6: Compare the variety layer with the land cover layer One of the ways to visualize how the neighborhood function operates is to compare the output raster (Variety) with the original input raster (Landcover). Turn on the Landcover layer. Zoom in to the middle of the map so you can clearly see individual cells. Notice that, in this case, most variety occurs at the edges of smaller, intermixed patches of vegetation. Imagine the 5 by 5 neighborhood passing over each cell in the Landcover layer, counting the number of different vegetation types, then moving to the next cell. The areas of medium to high variety are occurring where the edges of 3 or more vegetation types are in close proximity. These are the areas that require further investigation. Combined with other factors such as slope, aspect, or proximity to water, certain areas may stand out more than others. For example, a biologist might identify habitats for specific animal species, or a wild fire specialist might target locations for ladder fuel management. Zoom to the full extent of the study area. Key points The Neighborhood Statistics function (also known as a focal function) evaluates the cell and however many cells are included in the neighborhood based on a statistic, such as variety or majority. The Neighborhood Statistics function evaluates every cell in the input raster and writes the results to the corresponding cell in the output raster. Exercise 3: Find the variety of vegetation types by zone In this exercise, you will use wilderness fire perimeters as zones, and you will also create your own zones to use with the Zonal Statistic function. The value layer for both analyses will be a vegetation layer. In this case, the vegetation data are classified into dominant vegetation type. Your goal is to find out how many types of vegetation were burned in each fire, and to discover whether the variety of vegetation burned differs by elevation. Step 1: Open the map document Open the NineFires.mxd map document from your \Lab7Data\ folder. 4

5 In this scenario, there have been a series of wild land fires in fairly rugged terrain, which is composed of heavily forested land. It would be interesting to know how many different types of trees and vegetation the fires affected, but it would also help to know where the variety occurred. Consider the following questions. First, what is the variety of vegetation within each of the fire perimeters? And second, does the variety of vegetation types change within different elevation zones inside the fire perimeters? Step 2: Examine the vegetation data Turn on the Vegetation layer. Expand the Vegetation layer in the Table of Contents. The data for the Vegetation layer has been classified by the dominant vegetation type or landscape characteristic. Step 3: Set the analysis environment Set the Environment Settings as follows: Set the Current Workspace and Scratch Workspace directories to your \Lab7Data\MyData folder Processing Extent: Same as Layer "Study Area" Raster Analysis cell size: Same as Layer "DEM" Step 4: Find the variety of vegetation within each of the fire perimeters In this step, you will use the Fire perimeters layer, which is vector data, as zones. Each fire perimeter polygon represents an individual zone. Unlike most other functions in ArcGIS Spatial Analyst, the Zonal Statistics function does not result in a new surface. Instead, it creates a table of statistics and an optional chart. From the Spatial Analyst Tools menu in ArcToolbox, expand the Zonal menu, and double-click Zonal Statistics. Fill out the Zonal Statistics dialog as follows: Input raster or feature zone data Fire perimeters Zone field Firenum Input value raster Vegetation Statistics type Variety Ignore NoData in calculations Turn on your Spatial Analyst Toolbar. In the main menu select Customize, Toolbars, and Spatial Analyst. Make sure your new layer is the active layer on the Spatial Analyst toolbar and click the Histogram button. A bar chart appears. Right-click in the chart window and click Properties. In the Graph Properties dialog, check the Show labels (marks) box. Next, click the Appearance tab and uncheck the Graph Legend box. Click OK. With the bars labeled, you can compare the chart with the map. For example, the bar labeled 1 in the chart can be compared to the fire perimeter labeled 1 in the map. It is important to note here that if you had checked the Join output table to zone layer box in the Zonal Statistics dialog, the labels for the Fire perimeters layer would have disappeared in the map because the field names change in the feature attribute table when the join takes place. Close the chart window. Step 5: Examine the zonal statistics table Create a table of the zonal statistics. From the Spatial Analyst Tools menu in ArcToolbox, expand the Zonal menu, and double-click Zonal Statistics as Table. Fill out the dialog as follows: Input raster or feature zone data Fire perimeters Zone field Firenum Input value raster Vegetation Statistics type All Ignore NoData in calculations The table contains a range of descriptive statistics. The statistics are based on the Value field in 5

6 the Value raster, which in this case is the Vegetation layer. The field, Variety, contains the number of different values within a zone. Keep in mind that some of these statistics may not be useful for your analysis. For example, the Majority field reports the value that occurs most often in the zone. Notice that in zone 2 the vegetation value 5 occurs most often. If you opened the attribute table for the Vegetation layer, you would see that the value 5 corresponds to the vegetation type, Red Fir. Thus, in fire perimeter 2, the vegetation type, Red Fir occurred most often. On the other hand, the Mean field reports the average value in the zone. In this case, the values are vegetation codes, which stand for classified vegetation types. Taking the mean of these codes is not informative because the statistic doesn t correspond with a quantified value. However, if the vegetation layer had not been classified and the cell values indicated the percentage of canopy cover, then the mean statistic would report the average percentage of canopy cover for a zone. Close the table. Step 6: Reset the analysis environment In this analysis, although the zone layer will be elevation zones instead of fire perimeters, you will still need to constrain the analysis to the fire perimeters. You can do this by setting the Fire perimeters layer as a mask. Open the Environment Settings dialog. For Raster Analysis mask, choose Fire perimeters. Click OK. Step 7: Create elevation zones In this step, you will use the Reclassify to reclass the DEM layer into elevation zones. The zones will represent bands of elevation ranges. Elevation can be an important factor affecting the types of vegetation growing there. Determining how the elevation zones are created can be based on your knowledge of vegetation types or research about the phenomenon that you are investigating, such as fire behavior. In this exercise, however, you will define the zones based on approximately 200-meter intervals. From the Spatial Analyst Tools menu in ArcToolbox, expand the Reclass menu, then doubleclick Reclassify. Fill out the dialog as follows: Input raster DEM Reclass field Value Change missing values to NoData Now select the Classify button. Within the classification choose the method of equal intervals and choose 6 classes. In this case, you are slicing the DEM layer into six zones using an equal interval method. Since the input DEM ranges from 1360 to 2597 meters, six zones will represent roughly 200-meters in elevation change each. Click OK. Rename the new sliced layer Elevation Zones. Open the attribute table for the Elevation Zones layer. Select the fourth record (Zone 4). Notice Zone 4 in the map spans several fire perimeters. Select the other records one at a time so you can observe how the zones are distributed. Clear the selected features. Close the table. Step 8: Run the zonal statistics function In this step, you will run the Zonal Statistics function again, but this time the zone dataset is the Elevation Zones layer that you created in the previous step. Remember, the Fire perimeter layer is serving as a mask, so analysis will only occur within those polygons. From the Spatial Analyst Tools menu in ArcToolbox, expand the Zonal menu, then double-click Zonal Statistics. Fill out the Zonal Statistics dialog as follows: Input raster or feature zone data Elevation zones Zone field Value Input value raster Vegetation Statistics type Variety Ignore NoData in calculations Click OK. 6

7 Open the Histogram and change the properties settings as you did in Step 4. Notice there are now five zones since zones 4 and 5 from the Elevation Zones layer have the same variety and have been consolidated. The variety of vegetation affected by these 9 fires is highest in Zone 2, an elevation range between 1600 and 1800 meters. The lowest variety of vegetation affected by the 9 fires is in Zone 5 (Zone 6 in Elevation Zones layer), the highest elevation range. Close the chart and the table. Key points The Zonal Statistics function requires a zone layer and a value layer. The zone layer can be vector data or raster data. With raster data, all cell values in a zone are the same. The Zonal Statistics function produces a new surface as well as a table of statistics and a histogram that can be accessed from the Spatial Analyst toolbar. Lab 7 Assignment Please produce hardcopy pdf with three figures that contain maps in proper layout form with legends, cartographic components, etc. for the following lab exercises. Each figure should have an associated caption that explains the data and the analysis. Look at captions of figures in primary literature for examples. Upload the pdf to the lab 7 assignment on ecampus. Map 1: Highlight areas of land cover change between 1989 and 1992 in the Columbia River Estuary (Exercise 1). Map 2: Highlight areas of varying variety within your study area (Exercise 2). Map 3: Display a zonal statistic of your choice (Exercise 3). 7

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

GIS IN ECOLOGY: ANALYZING RASTER DATA

GIS IN ECOLOGY: ANALYZING RASTER DATA GIS IN ECOLOGY: ANALYZING RASTER DATA Contents Introduction... 2 Raster Tools and Functionality... 2 Data Sources... 3 Tasks... 4 Getting Started... 4 Creating Raster Data... 5 Statistics... 8 Surface

More information

GIS IN ECOLOGY: ANALYZING RASTER DATA

GIS IN ECOLOGY: ANALYZING RASTER DATA GIS IN ECOLOGY: ANALYZING RASTER DATA Contents Introduction... 2 Tools and Functionality for Raster Data... 2 Data Sources... 3 Tasks... 4 Getting Started... 4 Creating Raster Data... 5 Summary Statistics...

More information

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands.

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. GIS LAB 7 The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. This lab will ask you to work with the Spatial Analyst extension.

More information

Exercise 6: Working with Raster Data in ArcGIS 9.3

Exercise 6: Working with Raster Data in ArcGIS 9.3 Exercise 6: Working with Raster Data in ArcGIS 9.3 Why Spatial Analyst? Grid query Grid algebra Grid statistics Summary by zone Proximity mapping Reclassification Histograms Surface analysis Slope, aspect,

More information

In this exercise we will learn how to use the analysis tools in ArcGIS with vector and raster data to further examine potential building sites.

In this exercise we will learn how to use the analysis tools in ArcGIS with vector and raster data to further examine potential building sites. GIS Level 2 In the Introduction to GIS workshop we filtered data and visually examined it to determine where to potentially build a new mixed use facility. In order to get a low interest loan, the building

More information

Spatial Analyst: Multiple Criteria Evaluation Material adapted from FOR 4114 developed by Forestry Associate Professor Steve Prisley

Spatial Analyst: Multiple Criteria Evaluation Material adapted from FOR 4114 developed by Forestry Associate Professor Steve Prisley Spatial Analyst: Multiple Criteria Evaluation Material adapted from FOR 4114 developed by Forestry Associate Professor Steve Prisley Section 1: Data In this exercise we will be working with several types

More information

Working with Digital Elevation Models in ArcGIS 8.3

Working with Digital Elevation Models in ArcGIS 8.3 Working with Digital Elevation Models in ArcGIS 8.3 The homework that you need to turn in is found at the end of this document. This lab continues your introduction to using the Spatial Analyst Extension

More information

Data Structures & Database Queries in GIS

Data Structures & Database Queries in GIS Data Structures & Database Queries in GIS Objective In this lab we will show you how to use ArcGIS for analysis of digital elevation models (DEM s), in relationship to Rocky Mountain bighorn sheep (Ovis

More information

Task 1: Open ArcMap and activate the Spatial Analyst extension.

Task 1: Open ArcMap and activate the Spatial Analyst extension. Exercise 10 Spatial Analyst The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step instructions component

More information

EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE

EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE Document Updated: December, 2007 Introduction This exercise is designed to provide you with possible silvicultural

More information

Exercise 6: Using Burn Severity Data to Model Erosion Risk

Exercise 6: Using Burn Severity Data to Model Erosion Risk Exercise 6: Using Burn Severity Data to Model Erosion Risk Document Updated: November 2009 Software Versions: ERDAS Imagine 9.3 and ArcGIS 9.3, Microsoft Office 2007 Introduction A common use of burn severity

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 by Carolyn Talmadge, Madeline Wrable, Kyle Monahan on March 28, 2017 OVERVIEW...

More information

Introduction to ArcGIS 10.2

Introduction to ArcGIS 10.2 Introduction to ArcGIS 10.2 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 ArcGIS 10.2...

More information

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA This help guide describes how to merge two or more feature classes (vector) or rasters into one single feature class or raster dataset. The Merge Tool The Merge Tool combines input features from input

More information

Global Atmospheric Circulation Patterns Analyzing TRMM data Background Objectives: Overview of Tasks must read Turn in Step 1.

Global Atmospheric Circulation Patterns Analyzing TRMM data Background Objectives: Overview of Tasks must read Turn in Step 1. Global Atmospheric Circulation Patterns Analyzing TRMM data Eugenio Arima arima@hws.edu Hobart and William Smith Colleges Department of Environmental Studies Background: Have you ever wondered why rainforests

More information

Overlay Analysis II: Using Zonal and Extract Tools to Transfer Raster Values in ArcMap

Overlay Analysis II: Using Zonal and Extract Tools to Transfer Raster Values in ArcMap Overlay Analysis II: Using Zonal and Extract Tools to Transfer Raster Values in ArcMap Created by Patrick Florance and Jonathan Gale, Edited by Catherine Ressijac on March 26, 2018 If you have raster data

More information

How might you use visibility to map an ancient civilization's political landscape?

How might you use visibility to map an ancient civilization's political landscape? Analyzing Ancient Political Power and Urbanization Patterns by Introduction Problem How might you use visibility to map an ancient civilization's political landscape? The Yoruba civilization, one of the

More information

Working with ArcGIS: Classification

Working with ArcGIS: Classification Working with ArcGIS: Classification 2 Abbreviations D-click R-click TOC Double Click Right Click Table of Content Introduction The benefit from the use of geographic information system (GIS) software is

More information

How to Create Stream Networks using DEM and TauDEM

How to Create Stream Networks using DEM and TauDEM How to Create Stream Networks using DEM and TauDEM Take note: These procedures do not describe all steps. Knowledge of ArcGIS, DEMs, and TauDEM is required. TauDEM software ( http://hydrology.neng.usu.edu/taudem/

More information

Exercise 4 Estimating the effects of sea level rise on coastlines by reclassification

Exercise 4 Estimating the effects of sea level rise on coastlines by reclassification Exercise 4 Estimating the effects of sea level rise on coastlines by reclassification Due: Thursday February 1; at the start of class Goal: Get familiar with symbolizing and making time-series maps of

More information

Using the Stock Hydrology Tools in ArcGIS

Using the Stock Hydrology Tools in ArcGIS Using the Stock Hydrology Tools in ArcGIS This lab exercise contains a homework assignment, detailed at the bottom, which is due Wednesday, October 6th. Several hydrology tools are part of the basic ArcGIS

More information

Getting Started. Start ArcMap by opening up a new map.

Getting Started. Start ArcMap by opening up a new map. Start ArcMap by opening up a new map. Getting Started We now need to set up ArcMap to do some analysis using the Spatial Analyst extension. You will need to activate the Spatial Analyst extension by selecting

More information

Conservation Applications of LiDAR Data

Conservation Applications of LiDAR Data Program: Funding: Conservation Applications of LiDAR Data http://tsp.umn.edu/lidar Environment and Natural Resources Trust Fund Module: Instructor: Exercise: Hydrologic Applications Sean Vaughn, DNR GIS

More information

11. Kriging. ACE 492 SA - Spatial Analysis Fall 2003

11. Kriging. ACE 492 SA - Spatial Analysis Fall 2003 11. Kriging ACE 492 SA - Spatial Analysis Fall 2003 c 2003 by Luc Anselin, All Rights Reserved 1 Objectives The goal of this lab is to further familiarize yourself with ESRI s Geostatistical Analyst, extending

More information

Hot Spot / Point Density Analysis: Kernel Smoothing

Hot Spot / Point Density Analysis: Kernel Smoothing Hot Spot / Point Density Analysis: Kernel Smoothing Revised by Carolyn Talmadge on January 15, 2016 SETTING UP... 1 ENABLING THE SPATIAL ANALYST EXTENSION... 1 SET UP YOUR ANALYSIS OPTIONS IN ENVIRONMENTS...

More information

Creating Watersheds from a DEM in ArcGIS 9.x

Creating Watersheds from a DEM in ArcGIS 9.x Creating Watersheds from a DEM in ArcGIS 9.x These instructions enable you to create watersheds (a.k.a. catchments or basins) using a good quality Digital Elevation Model (DEM) in ArcGIS 9.1. The modeling

More information

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth Understanding Land Use and Land Cover using Google Earth Image an image is a representation of reality. It can be a sketch, a painting, a photograph, or some other graphic representation such as satellite

More information

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE)

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) PART 2: Analysis in ArcGIS (THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) Step 1: Start ArcCatalog and open a geodatabase If you have a shortcut icon for ArcCatalog on your desktop, double-click it to start

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 the

More information

Exercise 2: Working with Vector Data in ArcGIS 9.3

Exercise 2: Working with Vector Data in ArcGIS 9.3 Exercise 2: Working with Vector Data in ArcGIS 9.3 There are several tools in ArcGIS 9.3 used for GIS operations on vector data. In this exercise we will use: Analysis Tools in ArcToolbox Overlay Analysis

More information

The data for this lab comes from McDonald Forest. We will be working with spatial data representing the forest boundary, streams, roads, and stands.

The data for this lab comes from McDonald Forest. We will be working with spatial data representing the forest boundary, streams, roads, and stands. GIS LAB 6 Using the Projection Utility. Converting Data to Oregon s Approved Lambert Projection. Determining Stand Size, Stand Types, Road Length, and Stream Length. This lab will ask you to work with

More information

Math/Stat Classification of Spatial Analysis and Spatial Statistics Operations

Math/Stat Classification of Spatial Analysis and Spatial Statistics Operations Draft3, April 2012 Math/Stat Classification of Spatial Analysis and Spatial Statistics Operations for MapCalc software distributed by Berry & Associates // Spatial Information Systems Alternative frameworks

More information

Different Displays of Thematic Maps:

Different Displays of Thematic Maps: Different Displays of Thematic Maps: There are a number of different ways to display or classify thematic maps, including: Natural Breaks Equal Interval Quantile Standard Deviation What s important to

More information

Outline Anatomy of ArcGIS Metadata Data Types Vector Raster Conversion Adding Data Navigation Symbolization Methods Layer Files Editing Help Files

Outline Anatomy of ArcGIS Metadata Data Types Vector Raster Conversion Adding Data Navigation Symbolization Methods Layer Files Editing Help Files UPlan Training Lab Exercise: Introduction to ArcGIS Outline Anatomy of ArcGIS Metadata Data Types Vector Raster Conversion Adding Data Navigation Symbolization Methods Layer Files Editing Help Files Anatomy

More information

One of the many strengths of a GIS is that you can stack several data layers on top of each other for visualization or analysis. For example, if you

One of the many strengths of a GIS is that you can stack several data layers on top of each other for visualization or analysis. For example, if you One of the many strengths of a GIS is that you can stack several data layers on top of each other for visualization or analysis. For example, if you overlay a map of the habitat for an endangered species

More information

Watershed Delineation

Watershed Delineation Watershed Delineation Jessica L. Watkins, University of Georgia 2 April 2009 Updated by KC Love February 25, 2011 PURPOSE For this project, I delineated watersheds for the Coweeta synoptic sampling area

More information

Determining the Location of the Simav Fault

Determining the Location of the Simav Fault Lindsey German May 3, 2012 Determining the Location of the Simav Fault 1. Introduction and Problem Formulation: The issue I will be focusing on involves interpreting the location of the Simav fault in

More information

Handling Raster Data for Hydrologic Applications

Handling Raster Data for Hydrologic Applications Handling Raster Data for Hydrologic Applications Prepared by Venkatesh Merwade Lyles School of Civil Engineering, Purdue University vmerwade@purdue.edu January 2018 Objective The objective of this exercise

More information

Exercise 2: Working with Vector Data in ArcGIS 9.3

Exercise 2: Working with Vector Data in ArcGIS 9.3 Exercise 2: Working with Vector Data in ArcGIS 9.3 There are several tools in ArcGIS 9.3 used for GIS operations on vector data. In this exercise we will use: Analysis Tools in ArcToolbox Overlay Analysis

More information

Land Cover Data Processing Land cover data source Description and documentation Download Use Use

Land Cover Data Processing Land cover data source Description and documentation Download Use Use Land Cover Data Processing This document provides a step by step procedure on how to build the land cover data required by EnSim. The steps provided here my be long and there may be short cuts (like using

More information

Displaying and Rotating WindNinja-Derived Wind Vectors in ArcMap 10.5

Displaying and Rotating WindNinja-Derived Wind Vectors in ArcMap 10.5 Displaying and Rotating WindNinja-Derived Wind Vectors in ArcMap 10.5 Chuck McHugh RMRS, Fire Sciences Lab, Missoula, MT, 406-829-6953, cmchugh@fs.fed.us 08/01/2018 Displaying WindNinja-generated gridded

More information

Effects of sea level rise on shallow atolls in the South Pacific

Effects of sea level rise on shallow atolls in the South Pacific Tuvalu 2100 Effects of sea level rise on shallow atolls in the South Pacific Kristin Vollmann GEO 327GG December 3, 20100 INTRODUCTION Residents of the tiny island nation of Tuvalu, withh a maximumm elevation

More information

ENVI Tutorial: Vegetation Analysis

ENVI Tutorial: Vegetation Analysis ENVI Tutorial: Vegetation Analysis Vegetation Analysis 2 Files Used in this Tutorial 2 About Vegetation Analysis in ENVI Classic 2 Opening the Input Image 3 Working with the Vegetation Index Calculator

More information

GIS Workshop UCLS_Fall Forum 2014 Sowmya Selvarajan, PhD TABLE OF CONTENTS

GIS Workshop UCLS_Fall Forum 2014 Sowmya Selvarajan, PhD TABLE OF CONTENTS TABLE OF CONTENTS TITLE PAGE NO. 1. ArcGIS Basics I 2 a. Open and Save a Map Document 2 b. Work with Map Layers 2 c. Navigate in a Map Document 4 d. Measure Distances 4 2. ArcGIS Basics II 5 a. Work with

More information

GEOG4017 Geographical Information Systems Lab 8 Spatial Analysis and Digital Terrain Modeling

GEOG4017 Geographical Information Systems Lab 8 Spatial Analysis and Digital Terrain Modeling DEPARTMENT OF GEOGRAPHY HONG KONG BAPTIST UNIVERSITY Prof. Q. Zhou GEOG4017 Geographical Information Systems Lab 8 Spatial Analysis and Digital Terrain Modeling Objectives The exercise is designed to familiarize

More information

Automatic Watershed Delineation using ArcSWAT/Arc GIS

Automatic Watershed Delineation using ArcSWAT/Arc GIS Automatic Watershed Delineation using ArcSWAT/Arc GIS By: - Endager G. and Yalelet.F 1. Watershed Delineation This tool allows the user to delineate sub watersheds based on an automatic procedure using

More information

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS Spatial Data Analysis in Archaeology Anthropology 589b Fraser D. Neiman University of Virginia 2.19.07 Spring 2007 Kriging Artifact Density Surfaces in ArcGIS 1. The ingredients. -A data file -- in.dbf

More information

Spatial Analysis using Vector GIS THE GOAL: PREPARATION:

Spatial Analysis using Vector GIS THE GOAL: PREPARATION: PLAN 512 GIS FOR PLANNERS Department of Urban and Environmental Planning University of Virginia Fall 2006 Prof. David L. Phillips Spatial Analysis using Vector GIS THE GOAL: This tutorial explores some

More information

Midterm Exam. 2) What are three important things to keep in mind when selecting colors for a map? (5)

Midterm Exam. 2) What are three important things to keep in mind when selecting colors for a map? (5) Midterm Exam File Name: LASTNAME_Midterm.pdf Make sure to include your Name, UWNetID, course number, and quarter and year, on the document (points will be deducted if you have not identified your work).

More information

SIE 509 Principles of GIS Exercise 5 An Introduction to Spatial Analysis

SIE 509 Principles of GIS Exercise 5 An Introduction to Spatial Analysis SIE 509 Principles of GIS Exercise 5 An Introduction to Spatial Analysis Due: Oct. 31, 2017 Total Points: 50 Introduction: The Governor of Maine is asking communities to look at regionalization for major

More information

Exercie 5 Preparing GIS data for simulation with FARSITE REM407 GIS Applications in Fire Ecology and Management

Exercie 5 Preparing GIS data for simulation with FARSITE REM407 GIS Applications in Fire Ecology and Management Exercie 5 Preparing GIS data for simulation with FARSITE REM407 GIS Applications in Fire Ecology and Management Assignment: Make maps of the Fuelmodel layer and the clipped Canopy cover layer and submit

More information

Geo 327G Semester Project. Landslide Suitability Assessment of Olympic National Park, WA. Fall Shane Lewis

Geo 327G Semester Project. Landslide Suitability Assessment of Olympic National Park, WA. Fall Shane Lewis Geo 327G Semester Project Landslide Suitability Assessment of Olympic National Park, WA Fall 2011 Shane Lewis 1 I. Problem Landslides cause millions of dollars of damage nationally every year, and are

More information

Outcrop suitability analysis of blueschists within the Dry Lakes region of the Condrey Mountain Window, North-central Klamaths, Northern California

Outcrop suitability analysis of blueschists within the Dry Lakes region of the Condrey Mountain Window, North-central Klamaths, Northern California Outcrop suitability analysis of blueschists within the Dry Lakes region of the Condrey Mountain Window, North-central Klamaths, Northern California (1) Introduction: This project proposes to assess the

More information

Brief Overview of Geodatabases. Procedure IT GEOGRAPHIC INFORMATION SYSTEMS LAB 9 GEODATABASE AND DIGITIZING SHAPEFILED

Brief Overview of Geodatabases. Procedure IT GEOGRAPHIC INFORMATION SYSTEMS LAB 9 GEODATABASE AND DIGITIZING SHAPEFILED Developing entirely new maps using on-screen digitizing to create spatial features (such as points, lines, and polygons) is a vital GIS capability. ArcGIS provides a useful, but proprietary, spatial data

More information

Delineation of Watersheds

Delineation of Watersheds Delineation of Watersheds Adirondack Park, New York by Introduction Problem Watershed boundaries are increasingly being used in land and water management, separating the direction of water flow such that

More information

DEMs Downloading and projecting and using Digital Elevation Models (DEM)

DEMs Downloading and projecting and using Digital Elevation Models (DEM) DEMs Downloading and projecting and using Digital Elevation Models (DEM) Introduction In this exercise, you will work with Digital Elevation Models (DEM). You will download a DEM in geographic coordinates

More information

Calculating Conflict Density and Change over Time in Uganda using Vector Techniques

Calculating Conflict Density and Change over Time in Uganda using Vector Techniques Calculating Conflict Density and Change over Time in Uganda using Vector Techniques Created by Patrick Florance and Kyle Monahan; revised by Patrick Florance April 2, 2018. OVERVIEW... 1 SET UP... 1 SET

More information

SPATIAL MODELING GIS Analysis Winter 2016

SPATIAL MODELING GIS Analysis Winter 2016 SPATIAL MODELING GIS Analysis Winter 2016 Spatial Models Spatial Modeling attempts to represent how the world works All models are wrong, but some are useful (G.E. Box, quoted in course textbook pg. 379)

More information

Geographical Information Systems

Geographical Information Systems Geographical Information Systems Geographical Information Systems (GIS) is a relatively new technology that is now prominent in the ecological sciences. This tool allows users to map geographic features

More information

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes v. 10.1 WMS 10.1 Tutorial GSSHA WMS Basics Creating Feature Objects and Mapping Attributes to the 2D Grid Populate hydrologic parameters in a GSSHA model using land use and soil data Objectives This tutorial

More information

Exercise 5e: Estimating the impact of sea level rise in coastal areas of the United States and comparing to the impact in coastal Asia

Exercise 5e: Estimating the impact of sea level rise in coastal areas of the United States and comparing to the impact in coastal Asia Exercise 5e: Estimating the impact of sea level rise in coastal areas of the United States and comparing to the impact in coastal Asia Data sets (downloaded in previous homework from the National Geophysical

More information

Effects of Rising Sea Levels on Coral Reef and Mangrove Distributions along the Great Barrier Reef in Australia

Effects of Rising Sea Levels on Coral Reef and Mangrove Distributions along the Great Barrier Reef in Australia Effects of Rising Sea Levels on Coral Reef and Mangrove Distributions along the Great Barrier Reef in Australia Sarah Barfield Graduate Student Department of Integrative Biology University of Texas, Austin

More information

How to create a new geodatabase using the extract data wizard. 1. How to Extract the Schema to create a Geodatabase using an existing design.

How to create a new geodatabase using the extract data wizard. 1. How to Extract the Schema to create a Geodatabase using an existing design. How to create a new geodatabase using the extract data wizard The Extract Data Wizard can be used to create a new database based on an existing geodatabase. This tool may be used in the following cases:

More information

Lecture 5. Symbolization and Classification MAP DESIGN: PART I. A picture is worth a thousand words

Lecture 5. Symbolization and Classification MAP DESIGN: PART I. A picture is worth a thousand words Lecture 5 MAP DESIGN: PART I Symbolization and Classification A picture is worth a thousand words Outline Symbolization Types of Maps Classifying Features Visualization Considerations Symbolization Symbolization

More information

Watershed Modeling Orange County Hydrology Using GIS Data

Watershed Modeling Orange County Hydrology Using GIS Data v. 10.0 WMS 10.0 Tutorial Watershed Modeling Orange County Hydrology Using GIS Data Learn how to delineate sub-basins and compute soil losses for Orange County (California) hydrologic modeling Objectives

More information

Benthic Terrain Modeler

Benthic Terrain Modeler Benthic Terrain Modeler - Introduction Introduction to Benthic Terrain Modeling Exercise A Setting up your workspace: Installing the BTM and activating the Spatial Analyst Extension Exercise B Calculating

More information

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Thematic maps commonly deal with either of two kinds of data: Qualitative Data showing differences in kind or type (e.g.,

More information

GEOREFERENCING, PROJECTIONS Part I. PRESENTING DATA Part II

GEOREFERENCING, PROJECTIONS Part I. PRESENTING DATA Part II Week 7 GEOREFERENCING, PROJECTIONS Part I PRESENTING DATA Part II topics of the week Georeferencing Coordinate systems Map Projections ArcMap and Projections Geo-referencing Geo-referencing is the process

More information

Child Opportunity Index Mapping

Child Opportunity Index Mapping Child Opportunity Index Mapping A partnership project of How to Use and Interpret the Child Opportunity Index Maps How to Use the Child Opportunity Index Maps Getting Started: How to Find and Open a Child

More information

Learning ArcGIS: Introduction to ArcCatalog 10.1

Learning ArcGIS: Introduction to ArcCatalog 10.1 Learning ArcGIS: Introduction to ArcCatalog 10.1 Estimated Time: 1 Hour Information systems help us to manage what we know by making it easier to organize, access, manipulate, and apply knowledge to the

More information

Lab 2: Projecting Geographic Data

Lab 2: Projecting Geographic Data Lab 2: Projecting Geographic Data What you ll Learn: Basic methods for map projections in ArcMap. What You ll Produce: A map of Minnesota in three different statewide projections, a map of reprojected

More information

GEO 428: Raster Analysis II Tuesday, October 16, 2012

GEO 428: Raster Analysis II Tuesday, October 16, 2012 GEO 428: Raster Analysis II Tuesday, October 16, 2012 Input raster may require reclassification May be done by multiplying by a scalar - DEM = DEM - 25 May also require an either/or function Ex: Identify

More information

This lab exercise will try to answer these questions using spatial statistics in a geographic information system (GIS) context.

This lab exercise will try to answer these questions using spatial statistics in a geographic information system (GIS) context. by Introduction Problem Do the patterns of forest fires change over time? Do forest fires occur in clusters, and do the clusters change over time? Is this information useful in fighting forest fires? This

More information

Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II

Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II ARCH1291 Visual Studies II Week 8, Spring 2013 Assignment 7 GIS I Prof. Alihan Polat Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II Medium:

More information

Week 7 Last week: This week s topics. GIS and Forest Engineering Applications. FE 257. GIS and Forest Engineering Applications.

Week 7 Last week: This week s topics. GIS and Forest Engineering Applications. FE 257. GIS and Forest Engineering Applications. FE 257. GIS and Forest Engineering Applications Week 7 Week 7 Last week: Spatial Projections Questions? Next week- read: Chapter 10: Updating GIS Databases Chapter 12: Synthesis of Techniques Applied to

More information

Creating Watersheds from a DEM

Creating Watersheds from a DEM Creating Watersheds from a DEM These instructions enable you to create watersheds of specified area using a good quality Digital Elevation Model (DEM) in ArcGIS 8.1. The modeling is performed in ArcMap

More information

Vector Analysis: Farm Land Suitability Analysis in Groton, MA

Vector Analysis: Farm Land Suitability Analysis in Groton, MA Vector Analysis: Farm Land Suitability Analysis in Groton, MA Written by Adrienne Goldsberry, revised by Carolyn Talmadge 10/9/2018 Introduction In this assignment, you will help to identify potentially

More information

An Overview of Digital Terrain Modelling and Multi-Criteria Analysis

An Overview of Digital Terrain Modelling and Multi-Criteria Analysis Introduction An Overview of Digital Terrain Modelling and Multi-Criteria Analysis BC EnviroConsultants was recently awarded a contract from Environment Canada to produce a report on a rare plant species

More information

Watershed and Stream Network Delineation

Watershed and Stream Network Delineation Watershed and Stream Network Delineation GIS in Water Resources, Fall 2011 Prepared by David Tarboton, Utah State University Purpose The purpose of this exercise is to illustrate watershed and stream network

More information

INTRODUCTION TO GIS. Practicals Guide. Chinhoyi University of Technology

INTRODUCTION TO GIS. Practicals Guide. Chinhoyi University of Technology INTRODUCTION TO GIS Practicals Guide Chinhoyi University of Technology Lab 1: Basic Visualisation You have been requested to make a map of Zimbabwe showing the international boundary and provinces. The

More information

Delineation of high landslide risk areas as a result of land cover, slope, and geology in San Mateo County, California

Delineation of high landslide risk areas as a result of land cover, slope, and geology in San Mateo County, California Delineation of high landslide risk areas as a result of land cover, slope, and geology in San Mateo County, California Introduction Problem Overview This project attempts to delineate the high-risk areas

More information

How to Model Stream Temperature Using ArcMap

How to Model Stream Temperature Using ArcMap How to Model Stream Temperature Using ArcMap Take note: Assumption before proceeding: A temperature point file has been attributed with TauDEM variables. There are three processes described in this document.

More information

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online Lesson Plan - Middle and High School Land Use and Land Cover Understanding Land Use and Land Cover using ArcGIS Online Image an image is a representation of reality. It can be a sketch, a painting, a photograph,

More information

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online

Lesson Plan - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using ArcGIS Online Lesson Plan - Middle and High School Land Use and Land Cover Understanding Land Use and Land Cover using ArcGIS Online Image an image is a representation of reality. It can be a sketch, a painting, a photograph,

More information

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work?

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Outline Chapter 1 Introducing ArcGIS What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Basic data formats The ArcCatalog interface 1-1 1-2 A history of products Arc/Info

More information

Exercise 12 Spatial Analysis on Antarctica

Exercise 12 Spatial Analysis on Antarctica Exercise 12 Spatial Analysis on Antarctica Due: Tuesday, March 6 Goal: Using ArcMap s Spatial Analyst tools for digital elevation models and rasters. Datasets: Bed elevation Ice thickness Surface elevation

More information

How do I do that in Quantum GIS: illustrating classic GIS tasks Edited by: Arthur J. Lembo, Jr.; Salisbury University

How do I do that in Quantum GIS: illustrating classic GIS tasks Edited by: Arthur J. Lembo, Jr.; Salisbury University How do I do that in Quantum GIS: illustrating classic GIS tasks Edited by: Arthur J. Lembo, Jr.; Salisbury University How do I do that in Quantum GIS Page 1 Introduction from the editor:... 4 Database

More information

Introducing IMS. v) Select the Zoom to Full Extent tool. Did you return to the original view?

Introducing IMS. v) Select the Zoom to Full Extent tool. Did you return to the original view? Ocean/ENVIR 260, Winter 2006 Lab 1, Get to Know the Puget Sound Watershed Name Introducing IMS 1) Open your web browser and navigate to http://128.208.23.127/website/lab1. (This link can be found on the

More information

THE CONSERVATION LANDSCAPE CONTEXT TOOLBOX: A Custom ESRI ArcToolbox for the Stewardship of Conservation Lands in Rhode Island

THE CONSERVATION LANDSCAPE CONTEXT TOOLBOX: A Custom ESRI ArcToolbox for the Stewardship of Conservation Lands in Rhode Island THE CONSERVATION LANDSCAPE CONTEXT TOOLBOX: A Custom ESRI ArcToolbox for the Stewardship of Conservation Lands in Rhode Island Ann Borowik M.E.S.M. Research Project University of Rhode Island May 2008

More information

caused displacement of ocean water resulting in a massive tsunami. II. Purpose

caused displacement of ocean water resulting in a massive tsunami. II. Purpose I. Introduction The Great Sumatra Earthquake event took place on December 26, 2004, and was one of the most notable and devastating natural disasters of the decade. The event consisted of a major initial

More information

Using a GIS to Calculate Area of Occupancy. Part 1: Creating a Shapefile Grid

Using a GIS to Calculate Area of Occupancy. Part 1: Creating a Shapefile Grid Using a GIS to Calculate Area of Occupancy Part 1: Creating a Shapefile Grid By Ryan Elliott California Natural Diversity Database, A NatureServe network program December 2008 This document describes the

More information

Introduction to ArcMap

Introduction to ArcMap Introduction to ArcMap ArcMap ArcMap is a Map-centric GUI tool used to perform map-based tasks Mapping Create maps by working geographically and interactively Display and present Export or print Publish

More information

Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9

Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9 Working with Digital Elevation Models and Digital Terrain Models in ArcMap 9 1 TABLE OF CONTENTS INTRODUCTION...3 WORKING WITH DIGITAL TERRAIN MODEL (DTM) DATA FROM NRVIS, CITY OF KITCHENER, AND CITY OF

More information

WORKING WITH DMTI DIGITAL ELEVATION MODELS (DEM)

WORKING WITH DMTI DIGITAL ELEVATION MODELS (DEM) WORKING WITH DMTI DIGITAL ELEVATION MODELS (DEM) Contents (Ctrl-Click to jump to a specific page) Manipulating the DEM Step 1: Finding the DEM Tiles You Need... 2 Step 2: Importing the DEM Tiles into ArcMap...

More information

Trouble-Shooting Coordinate System Problems

Trouble-Shooting Coordinate System Problems Trouble-Shooting Coordinate System Problems Written by Barbara M. Parmenter. Revised on October 2, 2018 OVERVIEW OF THE EXERCISE... 1 COPYING THE MAP PROJECTION EXERCISE FOLDER TO YOUR H: DRIVE OR DESKTOP...

More information

Introduction to GIS I

Introduction to GIS I Introduction to GIS Introduction How to answer geographical questions such as follows: What is the population of a particular city? What are the characteristics of the soils in a particular land parcel?

More information

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole.

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole. Excel 2003 Creating a Chart Introduction Page 1 By the end of this lesson, learners should be able to: Identify the parts of a chart Identify different types of charts Create an Embedded Chart Create a

More information

Assessing Point Groundwater Contamination Potential

Assessing Point Groundwater Contamination Potential Assessing Point Groundwater Contamination Potential Florida caves by Introduction Problem Where might caves in Florida be susceptible to potential point contamination sources such as hazardous material

More information

JJ Munoz. Explanation of the Project/Outline

JJ Munoz. Explanation of the Project/Outline JJ Munoz Helper GEO 386G 1 December, 2016 GIS Project: Using ArcHydro and Surface Roughness tools to Determine Alluvial Fan Catchment Area Morphology Statistics from 1-meter resolution LiDAR DEM s. Explanation

More information