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

Size: px
Start display at page:

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

Transcription

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

2 Raster Data Model The GIS raster data model represents datasets in which square cells of the same size hold numeric values representing features or phenomena within a geographic area. Raster datasets extents are of a square or a rectangle shape in which the cells form horizontal (east-west) rows and vertical (north-south) columns. The structure of the raster and its cells allow for the cell positions to be calculated by knowing the position (x, y coordinates) of one of the raster corners. Raster cells can hold only numeric values, either integer or decimal. Raster s data type and data depth are set for the entire raster cannot be changed in totality or partially. Tables attached to integer rasters can hold text attributes as well. Because of a complete and continuous coverage of a geographic area raster data model lends itself to topological analyses.

3 GRID Selected Raster File Formats in ArcGIS Proprietary ESRI raster file format Composite files that are structured on a principle of a workspace and have part of their content stored in their own folder and part of it in the INFO folder. Can contain either integers decimal numbers (floating points) at 32-bit. GRID folder, containing parts (cell values, etc.) of the grid file. INFO folder, containing parts (statistics, etc.) of all GRIDs in the same workspace (folder)

4 Selected Raster File Formats in ArcGIS TIFF Tagged Image File Format Supports 1-bit unsigned and 4-, 8-, 16-, 32-bit signed/unsigned integer, and 32-bit floating point. 8- and 16-bit unsigned integer files allow for multiple bands. IMG ERDAS IMAGINE remote sensing software proprietary file format. Supports 1-, 2-, and 4-bit unsigned integer, 8-, 16-, 32-bit signed/unsigned integer, 32- and 64-bit decimal numbers. Multiple bands supported at all data depths.

5 ArcGIS raster dataset properties of the same dataset in three different formats. GRID TIFF IMG

6 Raster Data Analysis Analysis and manipulation of rasters can be divided along different lines, depending on which aspect of the raster use is considered: o Per-cell versus multiple cells analysis. o Single raster versus multiple rasters analysis. o Raster only analysis versus an analysis with a combination of a raster and a vector dataset. o Mathematical raster operations versus logical operations. o Generic versus applied algorithms.

7 Cell Statistics (per-cell, multiple rasters, generic math. algorithm) Available operations: minimum, maximum mean, median, range, sum, standard deviation, majority, etc. Block Statistics (multiple cells, single raster, generic math. algorithm) Zonal Statistics (multiple cells, multiple rasters, generic math. algorithm) Learn more about the functions by searching for them at

8 Reclassify (per-cell, single raster, value sorting) Con (per-cell, single or multiple rasters, logical algorithm) Con (in_conditional_raster, in_true_raster_or_constant, {in_false_raster_or_constant}, {where_clause}) Learn more about the functions by searching for them at 0.3/tools/spatial-analyst-toolbox/con-.htm l

9 Raster Calculator (per-cell, single or multiple rasters, generic math. algorithm) Learn more about the functions by searching for them at 0.3/tools/spatial-analyst-toolbox/rastercalculator.htm

10 Filter (multiple cells, single raster, generic math. algorithm) low-pass filter smoothes out data; equivalent to the Mean option of Focal Statistics Learn more about the functions by searching for them at 0.3/tools/spatial-analyst-toolbox/howfilter-works.htm l

11 Filter (cont d) The filter high-pass filter accentuates edges in data. The data The calculation for the processing cell (number 8) Raster example:

12 Extract by Points (per-cell, raster and vector combination) Extracts cell values to the points that fall within the cells. IDW (Inverse Distance Weighted) (per-cell interpolation of points, raster and vector combination) IDW function works on a principle that the interpolated variable decreases in influence with distance from its sampled location. Learn more about the functions by searching for them at 0.3/tools/3d-analyst-toolbox/how-idwworks.htm The Power parameter is used to increase the influence.

13 Different Interpolations Methods Topo to Raster Should be used to interpolate terrain if contours, rivers and lakes datasets are available. Ensures that lakes are flat and that rivers have a continuous downward slope in the direction of the flow. Spline Creates smooth surfaces, however, Continues interpolated trends outside of the range of observed values. IDW (Inverse Distance Weighted) Applies the IDW technique, the assumption of which is that the interpolated values is more close to the observed value, the more closer it is to it geographically, and vice versa. Should be only used on dense and evenly distributed observed (sample) values otherwise, tends to create visible rings of interpolated values. Radial Basis Function (Completely Regularized Spline version) Can be found in the Geostatistical Analyst extension in ArcGIS Creates smooth surfaces but that stay within the observed values range. Kriging Geostatistical method others above are deterministic interpolation methods. As such, it can produce a prediction surface and provide some measure of the certainty or accuracy of the predictions.

14 Fill (multiple cells, single raster, generic math. algorithm) Fills out sinks in the DEM raster, commonly created due to the resolution of the data or rounding of elevations to the nearest integer value. A sink is a cell surrounded by cells with higher values. Should be used to rectify a DEM raster and create a new one ready for hydrology tools such as Flow Direction. ArcGIS 10.1 Help File Sink Filled sink

15 Cost Path (multiple cells, multiple rasters, generic math. algorithm) Calculates the least-cost path from a source to a destination. The calculation is based on the values (costs) assigned to cells between the source(s) and the destination. The size of the cell and the side or diagonal position with respect to the direction of the cost calculation are also included in the calculation. There can be more than one source cell. The costs can be additionally weighted. Learn more about the functions by searching for them at p/10.0/help/index.html

16 Cost Distance one of the inputs for Cost Path is Cost Distance Learn more about the functions by searching for them at p/10.0/help/index.html Diagonal movement is increased by the proportional increase in distance versus the side movement, based on the Pythagoras theorem: = sq.rt. (1 + 1)

17 Cost Distance The final Cost Distance raster is calculated by spreading, through iterations, with distance costs, cell by cell, between the source (destination) cells and across the cost raster. Final Cost Distance raster Learn more about the functions by searching for them at ktop/10.0/help/index.html

18 Flow Direction (multiple cells, single raster, applied to hydrology) Working on a terrain (elevation) raster, creates a new raster with cell values indicating flow direction from each cell to its steepest downslope neighbour. Directions are indicated through codes based on a binary increment. The drop in the diagonal direction is divided by This affects the calculated steepness of a slope since it depends on height and distance (rise and run) and therefore the final direction (e.g. check the direction for the cell with the value of 47, in row 5, column 3). Flow directions Learn more about the functions by searching for them at p/10.0/help/index.html Outside of the main flow directions, additional codes are used to indicate directions where there are multiple cell neighbours with the same slope steepness.

19 Flow Accumulation (multiple cells, single raster, applied to hydrology) Based on the Flow Direction raster, a Flow Accumulation raster is created in which cell values indicate the number of cells that flow in that particular cell. Flow accumulation values can then be used to identify, e.g., streams (areas with high accumulation). Flow directions Learn more about the functions by searching for them at p/10.0/help/index.html

20 Viewshed (multiple cells, multiple rasters or a combination of a raster and a vector file, applied to viewscaping) Based on the terrain (elevation, surface) raster and observer points (raster cells), a new raster is created in which cell values indicate whether particular cells can be seen from the observer points or not. Learn more about the functions by searching for them at p/10.0/help/index.html The output values indicate whether the particular cell is visible from any of the observer points or not (Value = 0) and if it is, from how many (Value > 0) not possible to tell, though, from which observer points.

GEOGRAPHIC INFORMATION SYSTEMS Lecture 24: Spatial Analyst Continued

GEOGRAPHIC INFORMATION SYSTEMS Lecture 24: Spatial Analyst Continued GEOGRAPHIC INFORMATION SYSTEMS Lecture 24: Spatial Analyst Continued Spatial Analyst - Spatial Analyst is an ArcGIS extension designed to work with raster data - in lecture I went through a series of demonstrations

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

Lesson 5 overview. Concepts. Interpolators. Assessing accuracy Exercise 5

Lesson 5 overview. Concepts. Interpolators. Assessing accuracy Exercise 5 Interpolation Tools Lesson 5 overview Concepts Sampling methods Creating continuous surfaces Interpolation Density surfaces in GIS Interpolators IDW, Spline,Trend, Kriging,Natural neighbors TopoToRaster

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

Geographic Information Systems (GIS) Spatial Analyst [10] Dr. Mohammad N. Almasri. [10] Spring 2018 GIS Dr. Mohammad N. Almasri Spatial Analyst

Geographic Information Systems (GIS) Spatial Analyst [10] Dr. Mohammad N. Almasri. [10] Spring 2018 GIS Dr. Mohammad N. Almasri Spatial Analyst Geographic Information Systems (GIS) Spatial Analyst [10] Dr. Mohammad N. Almasri 1 Preface POINTS, LINES, and POLYGONS are good at representing geographic objects with distinct shapes They are less good

More information

L7 Raster Algorithms

L7 Raster Algorithms L7 Raster Algorithms NGEN6(TEK23) Algorithms in Geographical Information Systems by: Abdulghani Hasan, updated Nov 216 by Per-Ola Olsson Background Store and analyze the geographic information: Raster

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

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

Raster GIS applications Columns

Raster GIS applications Columns Raster GIS applications Columns Rows Image: cell value = amount of reflection from surface Thematic layer: cell value = category or measured value - In both cases, there is only one value per cell (in

More information

Cell based GIS. Introduction to rasters

Cell based GIS. Introduction to rasters Week 9 Cell based GIS Introduction to rasters topics of the week Spatial Problems Modeling Raster basics Application functions Analysis environment, the mask Application functions Spatial Analyst in ArcGIS

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

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

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

Creating Surfaces. Steve Kopp Steve Lynch

Creating Surfaces. Steve Kopp Steve Lynch Steve Kopp Steve Lynch Overview Learn the types of surfaces and the data structures used to store them Emphasis on surface interpolation Learn the interpolation workflow Understand how interpolators work

More information

Vector Data Analysis Working with Topographic Data. Vector data analysis working with topographic data.

Vector Data Analysis Working with Topographic Data. Vector data analysis working with topographic data. Vector Data Analysis Working with Topographic Data Vector data analysis working with topographic data. 1 Triangulated Irregular Network Triangulated Irregular Network 2 Triangulated Irregular Networks

More information

Lecture 8. Vector Data Analyses. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

Lecture 8. Vector Data Analyses. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Lecture 8 Vector Data Analyses Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Vector Data Analysis Vector data analysis involves one or a combination of: Measuring

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

University of West Hungary, Faculty of Geoinformatics. Béla Márkus. Spatial Analysis 5. module SAN5. 3D analysis

University of West Hungary, Faculty of Geoinformatics. Béla Márkus. Spatial Analysis 5. module SAN5. 3D analysis University of West Hungary, Faculty of Geoinformatics Béla Márkus Spatial Analysis 5. module SAN5 3D analysis SZÉKESFEHÉRVÁR 2010 The right to this intellectual property is protected by the 1999/LXXVI

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

Surface Analysis with 3D Analyst

Surface Analysis with 3D Analyst 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Surface Analysis with 3D Analyst Khalid H. Duri Esri UC2013. Technical Workshop. Why use 3D GIS? Because

More information

Esri International User Conference. San Diego, California. Technical Workshops. July Creating Surfaces. Steve Kopp and Steve Lynch

Esri International User Conference. San Diego, California. Technical Workshops. July Creating Surfaces. Steve Kopp and Steve Lynch Esri International User Conference San Diego, California Technical Workshops July 2011 Creating Surfaces Steve Kopp and Steve Lynch Overview Learn the types of surfaces and the data structures used to

More information

Practical II ArcGIS (10.0) for IWCM

Practical II ArcGIS (10.0) for IWCM Author: A.Priki Practical II ArcGIS (10.0) for IWCM AIM: In this workshop we will introduce some of the most commonly used ArcGIS functionalities for Integrated Water Cycle Management. You will get a chance

More information

What can we represent as a Surface?

What can we represent as a Surface? Geography 38/42:376 GIS II Topic 7: Surface Representation and Analysis (Chang: Chapters 13 & 15) DeMers: Chapter 10 What can we represent as a Surface? Surfaces can be used to represent: Continuously

More information

Statistical surfaces and interpolation. This is lecture ten

Statistical surfaces and interpolation. This is lecture ten Statistical surfaces and interpolation This is lecture ten Data models for representation of surfaces So far have considered field and object data models (represented by raster and vector data structures).

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

Surface Analysis. Data for Surface Analysis. What are Surfaces 4/22/2010

Surface Analysis. Data for Surface Analysis. What are Surfaces 4/22/2010 Surface Analysis Cornell University Data for Surface Analysis Vector Triangulated Irregular Networks (TIN) a surface layer where space is partitioned into a set of non-overlapping triangles Attribute and

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

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

GEOGRAPHIC INFORMATION SYSTEMS Lecture 25: 3D Analyst

GEOGRAPHIC INFORMATION SYSTEMS Lecture 25: 3D Analyst GEOGRAPHIC INFORMATION SYSTEMS Lecture 25: 3D Analyst 3D Analyst - 3D Analyst is an ArcGIS extension designed to work with TIN data (triangulated irregular network) - many of the tools in 3D Analyst also

More information

Digital Elevation Model & Surface Analysis

Digital Elevation Model & Surface Analysis Topics: Digital Elevation Model & Surface Analysis 1. Introduction 2. Create raster DEM 3. Examine Lidar DEM 4. Deriving secondary surface products 5. Mapping contours 6. Viewshed Analysis 7. Extract elevation

More information

DEM Artifacts: Layering or pancake effects

DEM Artifacts: Layering or pancake effects Outcomes DEM Artifacts: Stream networks & watersheds derived using ArcGIS s HYDROLOGY routines are only as good as the DEMs used. - Both DEM examples below have problems - Lidar and SRTM DEM products are

More information

Surface Creation & Analysis with 3D Analyst

Surface Creation & Analysis with 3D Analyst Esri International User Conference July 23 27 San Diego Convention Center Surface Creation & Analysis with 3D Analyst Khalid Duri Surface Basics Defining the surface Representation of any continuous measurement

More information

GIS Visualization, 3D Visualization and Animation. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

GIS Visualization, 3D Visualization and Animation. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University GIS Visualization, 3D Visualization and Animation Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Definitions 3D Visualization: Presenting or observing spatial,

More information

Improved Applications with SAMB Derived 3 meter DTMs

Improved Applications with SAMB Derived 3 meter DTMs Improved Applications with SAMB Derived 3 meter DTMs Evan J Fedorko West Virginia GIS Technical Center 20 April 2005 This report sums up the processes used to create several products from the Lorado 7

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

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

Spatial Analysis (Vector) II

Spatial Analysis (Vector) II Spatial Analysis (Vector) II GEOG 300, Lecture 9 Dr. Anthony Jjumba 1 A Spatial Network is a set of geographic locations interconnected in a system by a number of routes is a system of linear features

More information

Raster Analysis. Overview Neighborhood Analysis Overlay Cost Surfaces. Arthur J. Lembo, Jr. Salisbury University

Raster Analysis. Overview Neighborhood Analysis Overlay Cost Surfaces. Arthur J. Lembo, Jr. Salisbury University Raster Analysis Overview Neighborhood Analysis Overlay Cost Surfaces Exam results Mean: 74% STDEV: 15% High: 92 Breakdown: A: 1 B: 2 C: 2 D: 1 F: 2 We will review the exam next Tuesday. Start thinking

More information

Creating raster DEMs and DSMs from large lidar point collections. Summary. Coming up with a plan. Using the Point To Raster geoprocessing tool

Creating raster DEMs and DSMs from large lidar point collections. Summary. Coming up with a plan. Using the Point To Raster geoprocessing tool Page 1 of 5 Creating raster DEMs and DSMs from large lidar point collections ArcGIS 10 Summary Raster, or gridded, elevation models are one of the most common GIS data types. They can be used in many ways

More information

Channel Conditions in the Onion Creek Watershed. Integrating High Resolution Elevation Data in Flood Forecasting

Channel Conditions in the Onion Creek Watershed. Integrating High Resolution Elevation Data in Flood Forecasting Channel Conditions in the Onion Creek Watershed Integrating High Resolution Elevation Data in Flood Forecasting Lukas Godbout GIS in Water Resources CE394K Fall 2016 Introduction Motivation Flooding is

More information

Dijkstra's Algorithm

Dijkstra's Algorithm Shortest Path Algorithm Dijkstra's Algorithm To find the shortest path from the origin node to the destination node No matrix calculation Floyd s Algorithm To find all the shortest paths from the nodes

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

Raster Analysis. Overview Neighborhood Analysis Overlay Cost Surfaces. Arthur J. Lembo, Jr. Salisbury University

Raster Analysis. Overview Neighborhood Analysis Overlay Cost Surfaces. Arthur J. Lembo, Jr. Salisbury University Raster Analysis Overview Neighborhood Analysis Overlay Cost Surfaces Why we use Raster GIS In our previous discussion of data models, we indicated that Raster GIS is often used because: Raster is better

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

GIS Tools - Geometry. A GIS stores data as different layers of information Different feature types are stored in individual files.

GIS Tools - Geometry. A GIS stores data as different layers of information Different feature types are stored in individual files. A Definition of GIS GIS is a system of hardware, software, and procedures designed to support the capture, management, manipulation, analysis, modeling and display of spatially referenced data for solving

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

Lecture 21 - Chapter 8 (Raster Analysis, part2)

Lecture 21 - Chapter 8 (Raster Analysis, part2) GEOL 452/552 - GIS for Geoscientists I Lecture 21 - Chapter 8 (Raster Analysis, part2) Today: Digital Elevation Models (DEMs), Topographic functions (surface analysis): slope, aspect hillshade, viewshed,

More information

Mapping Distance and Density

Mapping Distance and Density Mapping Distance and Density Distance functions allow you to determine the nearest location of something or the least-cost path to a particular destination. Density functions, on the other hand, allow

More information

Gridding and Contouring in Geochemistry for ArcGIS

Gridding and Contouring in Geochemistry for ArcGIS Gridding and Contouring in Geochemistry for ArcGIS The Geochemsitry for ArcGIS extension includes three gridding options: Minimum Curvature Gridding, Kriging and a new Inverse Distance Weighting algorithm.

More information

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS HOUSEKEEPING Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS Quizzes Lab 8? WEEK EIGHT Lecture INTERPOLATION & SPATIAL ESTIMATION Joe Wheaton READING FOR TODAY WHAT CAN WE COLLECT AT POINTS?

More information

Geographic Surfaces. David Tenenbaum EEOS 383 UMass Boston

Geographic Surfaces. David Tenenbaum EEOS 383 UMass Boston Geographic Surfaces Up to this point, we have talked about spatial data models that operate in two dimensions How about the rd dimension? Surface the continuous variation in space of a third dimension

More information

Introduction to 3D Analysis. Jinwu Ma Jie Chang Khalid Duri

Introduction to 3D Analysis. Jinwu Ma Jie Chang Khalid Duri Introduction to 3D Analysis Jinwu Ma Jie Chang Khalid Duri Area & Volume 3D Analyst Features Detect Change Determine Cut/Fill Calculate Surface Area & Volume Data Management Data Creation Data Conversion

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

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

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

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

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 agributes linked to feature ID explicit localon every point has coordinates 2 Fields in

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

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

Investigation of Sampling and Interpolation Techniques for DEMs Derived from Different Data Sources

Investigation of Sampling and Interpolation Techniques for DEMs Derived from Different Data Sources Investigation of Sampling and Interpolation Techniques for DEMs Derived from Different Data Sources FARRAG ALI FARRAG 1 and RAGAB KHALIL 2 1: Assistant professor at Civil Engineering Department, Faculty

More information

Initial Analysis of Natural and Anthropogenic Adjustments in the Lower Mississippi River since 1880

Initial Analysis of Natural and Anthropogenic Adjustments in the Lower Mississippi River since 1880 Richard Knox CE 394K Fall 2011 Initial Analysis of Natural and Anthropogenic Adjustments in the Lower Mississippi River since 1880 Objective: The objective of this term project is to use ArcGIS to evaluate

More information

Geol 588. GIS for Geoscientists II. Zonal functions. Feb 22, Zonal statistics. Interpolation. Zonal statistics Sp. Analyst Tools - Zonal.

Geol 588. GIS for Geoscientists II. Zonal functions. Feb 22, Zonal statistics. Interpolation. Zonal statistics Sp. Analyst Tools - Zonal. Zonal functions Geol 588 GIS for Geoscientists II Feb 22, 2011 Zonal statistics Interpolation Zonal statistics Sp. Analyst Tools - Zonal Choose correct attribute for zones (usually: must be unique ID for

More information

Final project: Lecture 21 - Chapter 8 (Raster Analysis, part2) GEOL 452/552 - GIS for Geoscientists I

Final project: Lecture 21 - Chapter 8 (Raster Analysis, part2) GEOL 452/552 - GIS for Geoscientists I GEOL 452/552 - GIS for Geoscientists I Lecture 21 - Chapter 8 (Raster Analysis, part2) Talk about class project (copy follow_along_data\ch8a_class_ex into U:\ArcGIS\ if needed) Catch up with lecture 20

More information

ArcGIS Enterprise Building Raster Analytics Workflows. Mike Muller, Jie Zhang

ArcGIS Enterprise Building Raster Analytics Workflows. Mike Muller, Jie Zhang ArcGIS Enterprise Building Raster Analytics Workflows Mike Muller, Jie Zhang Introduction and Context Raster Analytics What is Raster Analytics? The ArcGIS way to create and execute spatial analysis models

More information

The Raster Data Model

The Raster Data Model The Raster Data Model 2 2 2 2 8 8 2 2 8 8 2 2 2 2 2 2 8 8 2 2 2 2 2 2 2 2 2 Llano River, Mason Co., TX 1 Rasters are: Regular square tessellations Matrices of values distributed among equal-sized, square

More information

GY301 Geomorphology Lab 5 Topographic Map: Final GIS Map Construction

GY301 Geomorphology Lab 5 Topographic Map: Final GIS Map Construction GY301 Geomorphology Lab 5 Topographic Map: Final GIS Map Construction Introduction This document describes how to take the data collected with the total station for the campus topographic map project and

More information

Spatial Analysis and Modeling (GIST 4302/5302) Guofeng Cao Department of Geosciences Texas Tech University

Spatial Analysis and Modeling (GIST 4302/5302) Guofeng Cao Department of Geosciences Texas Tech University Spatial Analysis and Modeling (GIST 4302/5302) Guofeng Cao Department of Geosciences Texas Tech University 1 Outline of This Week Last topic, we learned: Spatial autocorrelation of areal data Spatial regression

More information

Making Yield Contour Maps Using John Deere Data

Making Yield Contour Maps Using John Deere Data Making Yield Contour Maps Using John Deere Data Exporting the Yield Data Using JDOffice 1. Data Format On Hard Drive 2. Start program JD Office. a. From the PC Card menu on the left of the screen choose

More information

Raster Data Models 9/18/2018

Raster Data Models 9/18/2018 Raster Data Models The Raster Data Model Rasters are: Regular square tessellations Matrices of values distributed among equal-sized, square cells 5 5 5 5 5 5 5 5 2 2 5 5 5 5 5 5 2 2 2 2 5 5 5 5 5 2 2 2

More information

Lecture 20 - Chapter 8 (Raster Analysis, part1)

Lecture 20 - Chapter 8 (Raster Analysis, part1) GEOL 452/552 - GIS for Geoscientists I Lecture 20 - Chapter 8 (Raster Analysis, part) 4 lectures on rasters - but won t cover everything (Raster GIS course: Geol 588: GIS II (Spring 20) Today: Raster data,

More information

Spatial Interpolation & Geostatistics

Spatial Interpolation & Geostatistics (Z i Z j ) 2 / 2 Spatial Interpolation & Geostatistics Lag Lag Mean Distance between pairs of points 1 Tobler s Law All places are related, but nearby places are related more than distant places Corollary:

More information

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-7 Chapters 13 and 14

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-7 Chapters 13 and 14 Applied Cartography and Introduction to GIS GEOG 2017 EL Lecture-7 Chapters 13 and 14 Data for Terrain Mapping and Analysis DEM (digital elevation model) and TIN (triangulated irregular network) are two

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

Watershed Delineation

Watershed Delineation Watershed Delineation Using SAGA GIS Tutorial ID: IGET_SA_003 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

FOR Save the Poudre: Poudre Waterkeeper BY PetersonGIS. Inputs, Methods, Results. June 15, 2012

FOR Save the Poudre: Poudre Waterkeeper BY PetersonGIS. Inputs, Methods, Results. June 15, 2012 W e t l a n d s A n a l y s i s FOR Save the Poudre: Poudre Waterkeeper BY PetersonGIS Inputs, Methods, Results June 15, 2012 PROJECT GOALS The project goals were 1) create variable width buffers along

More information

Lecture 4: Digital Elevation Models

Lecture 4: Digital Elevation Models Lecture 4: Digital Elevation Models GEOG413/613 Dr. Anthony Jjumba 1 Digital Terrain Modeling Terms: DEM, DTM, DTEM, DSM, DHM not synonyms. The concepts they illustrate are different Digital Terrain Modeling

More information

Interpolate Continuous Data From Non-Continuous Data. Examples. Dialog Box

Interpolate Continuous Data From Non-Continuous Data. Examples. Dialog Box Interpolate Continuous Data From Non-Continuous Data Examples Dialog Box Interpolating Continuous Elevation Data From Contours Interpolating Continuous Bathymetric Data Using a Mask Map Layer Using the

More information

Lecture 22 - Chapter 8 (Raster Analysis, part 3)

Lecture 22 - Chapter 8 (Raster Analysis, part 3) GEOL 452/552 - GIS for Geoscientists I Lecture 22 - Chapter 8 (Raster Analysis, part 3) Today: Zonal Analysis (statistics) for polygons, lines, points, interpolation (IDW), Effects Toolbar, analysis masks

More information

Spatial Interpolation - Geostatistics 4/3/2018

Spatial Interpolation - Geostatistics 4/3/2018 Spatial Interpolation - Geostatistics 4/3/201 (Z i Z j ) 2 / 2 Spatial Interpolation & Geostatistics Lag Distance between pairs of points Lag Mean Tobler s Law All places are related, but nearby places

More information

Contents of Lecture. Surface (Terrain) Data Models. Terrain Surface Representation. Sampling in Surface Model DEM

Contents of Lecture. Surface (Terrain) Data Models. Terrain Surface Representation. Sampling in Surface Model DEM Lecture 13: Advanced Data Models: Terrain mapping and Analysis Contents of Lecture Surface Data Models DEM GRID Model TIN Model Visibility Analysis Geography 373 Spring, 2006 Changjoo Kim 11/29/2006 1

More information

Crea%ng DEMs From LiDAR Point Cloud Data

Crea%ng DEMs From LiDAR Point Cloud Data Crea%ng DEMs From LiDAR Point Cloud Data C. Crosby (ccrosby@sdsc.edu) San Diego Supercomputer Center / OpenTopography.org Ramon Arrowsmith SESE, ASU 2009 SCEC LiDAR Short Course Digital ElevaEon Models

More information

+ = Spatial Analysis of Raster Data. 2 =Fault in shale 3 = Fault in limestone 4 = no Fault, shale 5 = no Fault, limestone. 2 = fault 4 = no fault

+ = Spatial Analysis of Raster Data. 2 =Fault in shale 3 = Fault in limestone 4 = no Fault, shale 5 = no Fault, limestone. 2 = fault 4 = no fault Spatial Analysis of Raster Data 0 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 2 4 4 4 2 4 5 5 4 2 4 4 4 2 5 5 4 4 2 4 5 4 3 5 4 4 4 2 5 5 5 3 + = 0 = shale 1 = limestone 2 = fault 4 = no fault 2 =Fault in shale 3 =

More information

Local Elevation Surface Modeling using GPS Derived Point Clouds. John G. Whitman, Jr.

Local Elevation Surface Modeling using GPS Derived Point Clouds. John G. Whitman, Jr. Local Elevation Surface Modeling using GPS Derived Point Clouds WhitmanJ2@myfairpoint.net Study Area Overview Topographic Background NAIP with Roads and Streams Public DEM Models of Study Area National

More information

Spatial Analysis Exercise GIS in Water Resources Fall 2011

Spatial Analysis Exercise GIS in Water Resources Fall 2011 Spatial Analysis Exercise GIS in Water Resources Fall 2011 Prepared by David G. Tarboton and David R. Maidment Goal The goal of this exercise is to serve as an introduction to Spatial Analysis with ArcGIS.

More information

Introduction to the Image Analyst Extension. Mike Muller, Vinay Viswambharan

Introduction to the Image Analyst Extension. Mike Muller, Vinay Viswambharan Introduction to the Image Analyst Extension Mike Muller, Vinay Viswambharan What is the Image Analyst Extension? The Image Analyst Extension (IA) is an application extension which extends ArcGIS Pro with

More information

Rasters are: The Raster Data Model. Cell location specified by: Why squares? Raster Data Models 9/25/2014. GEO327G/386G, UT Austin 1

Rasters are: The Raster Data Model. Cell location specified by: Why squares? Raster Data Models 9/25/2014. GEO327G/386G, UT Austin 1 5 5 5 5 5 5 5 5 5 5 5 5 2 2 5 5 2 2 2 2 2 2 8 8 2 2 5 5 5 5 5 5 2 2 2 2 5 5 5 5 5 2 2 2 5 5 5 5 The Raster Data Model Rasters are: Regular square tessellations Matrices of values distributed among equalsized,

More information

The Raster Data Model

The Raster Data Model The Raster Data Model 2 2 2 2 8 8 2 2 8 8 2 2 2 2 2 2 8 8 2 2 2 2 2 2 2 2 2 Llano River, Mason Co., TX 9/24/201 GEO327G/386G, UT Austin 1 Rasters are: Regular square tessellations Matrices of values distributed

More information

Geostatistics 2D GMS 7.0 TUTORIALS. 1 Introduction. 1.1 Contents

Geostatistics 2D GMS 7.0 TUTORIALS. 1 Introduction. 1.1 Contents GMS 7.0 TUTORIALS 1 Introduction Two-dimensional geostatistics (interpolation) can be performed in GMS using the 2D Scatter Point module. The module is used to interpolate from sets of 2D scatter points

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

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

Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater. 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

More information

Creating Contours using ArcMap

Creating Contours using ArcMap Creating Contours with ArcMap and ArcScene Digital elevation models (DEMs) are geospatial datasets that contain elevation values sampled according to a regularly spaced rectangular grid. They can be used

More information

PUG List. Raster Analysis 3D Analysis Geoprocessing. Steve Kopp

PUG List. Raster Analysis 3D Analysis Geoprocessing. Steve Kopp PUG List Raster Analysis 3D Analysis Geoprocessing Steve Kopp Contour Polygons Spatial Analyst - color-filled contours. Similar to thematic classification, where blue = -1000 to zero, and red = 0 to +1000,

More information

Map Analysis of Raster Data I 3/8/2018

Map Analysis of Raster Data I 3/8/2018 Map Analysis of Raster Data I /8/8 Spatial Analysis of Raster Data What is Spatial Analysis? = shale = limestone 4 4 4 4 5 5 4 4 4 4 5 5 4 4 4 5 4 5 4 4 4 5 5 5 + = = fault =Fault in shale 4 = no fault

More information

The GIS Spatial Data Model

The GIS Spatial Data Model The GIS Spatial Data Model Introduction: Spatial data are what drive a GIS. Every piece of functionality that makes a GIS separate from another analytical environment is rooted in the spatially explicit

More information

Learn how to delineate a watershed using the hydrologic modeling wizard

Learn how to delineate a watershed using the hydrologic modeling wizard v. 11.0 WMS 11.0 Tutorial Learn how to delineate a watershed using the hydrologic modeling wizard Objectives Import a digital elevation model, compute flow directions, and delineate a watershed and sub-basins

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

Geoprocessing and georeferencing raster data

Geoprocessing and georeferencing raster data Geoprocessing and georeferencing raster data Raster conversion tools Geoprocessing tools ArcCatalog tools ESRI Grid GDB Raster Raster Dataset Raster Catalog Erdas IMAGINE TIFF ArcMap - raster projection

More information

IMPROVING THE ACCURACY OF DIGITAL TERRAIN MODELS

IMPROVING THE ACCURACY OF DIGITAL TERRAIN MODELS STUDIA UNIV. BABEŞ BOLYAI, INFORMATICA, Volume XLV, Number 1, 2000 IMPROVING THE ACCURACY OF DIGITAL TERRAIN MODELS GABRIELA DROJ Abstract. The change from paper maps to GIS, in various kinds of geographical

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

Distributed Image Analysis Using the ArcGIS API for Python

Distributed Image Analysis Using the ArcGIS API for Python Distributed Image Analysis Using the ArcGIS API for Python Jie Zhang, Elizabeth Graham The ArcGIS Platform Is a Comprehensive Imagery Platform System of Engagement System of Insight Professional Imagery

More information