Spatial Analyst is an extension in ArcGIS specially designed for working with raster data.

Size: px
Start display at page:

Download "Spatial Analyst is an extension in ArcGIS specially designed for working with raster data."

Transcription

1 Spatial Analyst is an extension in ArcGIS specially designed for working with raster data. 1

2 Do you remember the difference between vector and raster data in GIS? 2

3 In Lesson 2 you learned about the difference between vector and raster data. Vector data representations are points, lines and polygons, while raster data is composed of pixels (cells) of a certain size. So far in this class we have worked with the vector data tools, however today s lesson and exercise will cover raster data tools. It is important to be aware of the fact different analysis tools in ArcGIS are used for vector and raster data. This slide shows three raster data layers. 1) an ArcInfo GRID displaying the landcover types of Latah county, Idaho. The brown pixels represent agricultural lands while the green and yellow pixels represent forested lands. 2) a black&white aerial photograph if you zoom in far enough on any photograph you will see that it is made up of pixels. 3) a digital elevation model (DEM) for Latah county, Idaho where each pixel value represents the elevation at that particular location in this DEM the light colors represent high elevation and the dark areas represent low elevation. 3

4 Satellite imagery is raster data. These are clips from Landsat 7 imagery at 30 meter pixel size. 4

5 As you zoom in the image looks more and more fuzzy. You are beginning to see the individual building blocks of the image the pixels, or picture elements. 5

6 The pixels are clearly visible here. Pixels are sometimes called grid cells, cells, etc. Pixel stands for picture element. In a GIS you can measure the size of the pixels using the measuring tool. 6

7 Each pixel in a raster dataset is represented by a number, often ranging from 0 to 255. In B&W images darker pixels are represented by lower values. 7

8 Color images are composed of three bands, often Red, Green, Blue. Multi-spectral images have many more bands recorded along the electromagnetic spectrum, e.g. infrared and far infrared bands in addition to red, green, blue Hyperspectral images may have over 100 bands. 8

9 In the raster data model, each location is represented as a cell. The matrix of cells, organized into rows and columns, is called a grid. Each row contains a group of cells with values representing a geographic phenomenon. Cell values are numbers, which represent nominal data such as land use classes, measures of light intensity or relative 9

10 All raster datasets (or grids) are rectangular. If they don t look rectangular it is because the NODATA is displayed as transparent. 10

11 This is the DEM with the study area boundary overlayed in ArcGIS 11

12 Make a MASK from the study area outline. This is done in Spatial Analyst we will learn how to do this next time. 12

13 This is the masked out elevation within the study area. 13

14 This slide shows a raster dataset (GRID) of the vegetation types on Craig Mountain along with the associated tabular data. Raster (grid) tables are different than vector tables. Grid tables always contain at least two fields VALUE and COUNT. The VALUE represent the different grid features. In this example grid VALUE 2001 represents the Dry-land crop types on Craig Mountain. The COUNT column tells you that there are 845 pixels (cells) of this VALUE-type. The area of Dry-land crop types (value = 2001) can be calculated l if the pixel size is known. The pixel size for the Craig Mountain vegetation grid is 30 m and the area of Dry-land crop types is therefore 30x30x845 square meters = square meters (= hectares). Notice how the raster table is similar in structure to a vector SUMMARY table. 14

15 In raster data, a feature is a group of pixels that have the same value. The area of a feature is the pixel size times the number of pixels of that feature type. 15

16 How much area is YELLOW? What would the attribute table look like? 16

17 You are looking at a digital elevation model where each pixel value represents the elevation at a particular location. In this image red is low elevation and dark blue is high elevation. The histogram for the raster dataset shows the pixel count along the range of pixel values, in this case the elevation values. Approximately what elevation value has the highest number of pixels? What is the mean elevation value? What is the min and max elevation values? 17

18 Raster data can be continuous or classified. In this example the same dataset (elevation in the Owyhee mountains) is shown as a continuous dataset ranging from 651 m to 2559 m and as a classified dataset with five classes. The classified data may simply be the continuous data displayed as classified or it can be reclassified to only have five classes (1,2,3,4,5). 18

19 Continuous data does not have an attribute table but you can display the histogram The classified data has can be displayed in classes (using Properties Symbology Classified) or it can be Reclassified into 5 classes. If the data is reclassified the raster will have a table with 5 values and the pixel count for each value. The range for each class is not preserved in the reclassification you have to remember what class breaks you selected! 19

20 In example 2 continuous data is reclassified from values 1-30 into 3 new values (1,2,3). All cells that were in the value range 1-10 in the input grid will be 1 in the output grid. All cells that were in the value range in the input grid will be 2 in the output grid. All cells that were in the value range in the input grid will be 3 in the output grid (there are no data in this class). 20

21 When performing analysis, make sure you are asking appropriate questions of the cell size. For example, it is unlikely you will study mouse movement when the cell size is five kilometers. Five kilometer cells may be more applicable when studying the effects of global warming over the earth. 21

22 There are three resampling methods in ArcGIS: Nearest neighbor Bilinear interpolation Cubic convolution Nearest is used for categorical data (such as vegetation or soil types) while bilinear or cubic is used for continuous data such as elevation 22

23 Nearest neighbor assignment is the resampling technique of choice for discrete (categorical) data since it does not alter the value of the input cells. Once the location of the cell's center on the output raster dataset is located on the input raster, nearest neighbor assignment will determine the location of the closest cell center on the input raster and assign the value of that cell to the cell on the output raster. The nearest neighbor assignment does not change any of the values of cells from the input raster dataset. The value 2 in the input raster will always be the value 2 in the output raster it will never be 2.2 or 2.3. Since the output cell values remain the same, nearest neighbor assignment should be used for nominal or ordinal data, where each value represents a class, member, or classification (categorical data, such as a landuse, soil, or forest type). Bilinear interpolation uses the value of the four nearest input cell centers to determine the value on the output raster. The new value for the output cell is a weighted average of these four values, adjusted to account for their distance from the center of the output cell. This interpolation method results in a smoother looking surface than can be obtained using nearest neighbor. Since the values for the output cells are calculated according to the relative position and the value of the input cells, bilinear interpolation is preferred for data where the location from a known point or phenomenon determines the value assigned to the cell (that is, continuous surfaces). Elevation, slope, intensity of noise from an airport, and salinity of the groundwater near an estuary are all phenomena represented as continuous surfaces and are most appropriately resampled using bilinear interpolation. 23

24 If you need to project raster data it is important to select the correct resampling method. Select BILINEAR or CUBIC for continuous data and NEAREST for categorical (classified) data. 24

25 The Raster calculator in Spatial Analyst can be used to perform grid algebra, i.e. add, subtract, multiply or divide grids on a cell by cell basis. This example shows how the two input grids are added and then divided by 2 to create an output grid. 25

26 The mathematical functions in Spatial Analyst are not limited to arithmetic operators but also include trigonometric functions, power functions, logarithmic functions and exponentials. This concludes Lesson 7. In Exercise 7 you will practice using some of the tools we have been talking about in this presentation and in Lesson 8 you will learn more about how to use Spatial Analyst for raster modeling using the raster calculator in applications to natural resource problems. 26

27 Remember that the tools and techniques that you have learned to use for vector data, for example CLIP and INTERSECT, do not work the same way for raster data. You have to use different tools and techniques for vector and raster data! 27

Lesson 9: Multitemporal Analysis

Lesson 9: Multitemporal Analysis Lesson 9: Multitemporal Analysis Lesson Description Multitemporal change analyses require the identification of features and measurement of their change through time. In this lesson, we will examine vegetation

More information

GEO/EVS 425/525 Unit 9 Aerial Photograph and Satellite Image Rectification

GEO/EVS 425/525 Unit 9 Aerial Photograph and Satellite Image Rectification GEO/EVS 425/525 Unit 9 Aerial Photograph and Satellite Image Rectification You have seen satellite imagery earlier in this course, and you have been looking at aerial photography for several years. You

More information

Remote Sensing in an

Remote Sensing in an Chapter 15: Spatial Enhancement of Landsat Imagery Remote Sensing in an ArcMap Environment Remote Sensing Analysis in an ArcMap Environment Tammy E. Parece Image source: landsat.usgs.gov Tammy Parece James

More information

F2 - Fire 2 module: Remote Sensing Data Classification

F2 - Fire 2 module: Remote Sensing Data Classification F2 - Fire 2 module: Remote Sensing Data Classification F2.1 Task_1: Supervised and Unsupervised classification examples of a Landsat 5 TM image from the Center of Portugal, year 2005 F2.1 Task_2: Burnt

More information

Enhancement of Multispectral Images and Vegetation Indices

Enhancement of Multispectral Images and Vegetation Indices Enhancement of Multispectral Images and Vegetation Indices ERDAS Imagine 2016 Description: We will use ERDAS Imagine with multispectral images to learn how an image can be enhanced for better interpretation.

More information

Raster is faster but vector is corrector

Raster is faster but vector is corrector Account not required Raster is faster but vector is corrector The old GIS adage raster is faster but vector is corrector comes from the two different fundamental GIS models: vector and raster. Each of

More information

Application of GIS to Fast Track Planning and Monitoring of Development Agenda

Application of GIS to Fast Track Planning and Monitoring of Development Agenda Application of GIS to Fast Track Planning and Monitoring of Development Agenda Radiometric, Atmospheric & Geometric Preprocessing of Optical Remote Sensing 13 17 June 2018 Outline 1. Why pre-process remotely

More information

Preparing Remote Sensing Data for Natural Resources Mapping (image enhancement, rectifications )

Preparing Remote Sensing Data for Natural Resources Mapping (image enhancement, rectifications ) Preparing Remote Sensing Data for Natural Resources Mapping (image enhancement, rectifications ) Why is this important What are the major approaches Examples of digital image enhancement Follow up exercises

More information

A Little Spare Change

A Little Spare Change A Little Spare Change Monitoring land-cover change by satellite by Introduction Problem Can city utility services use remote satellite data, processed with geographic information systems (GIS), to help

More information

Remote Sensing in an

Remote Sensing in an Chapter 6: Displaying Data Remote Sensing in an ArcMap Environment Remote Sensing Analysis in an ArcMap Environment Tammy E. Parece Image source: landsat.usgs.gov Tammy Parece James Campbell John McGee

More information

Saturation And Value Modulation (SVM): A New Method For Integrating Color And Grayscale Imagery

Saturation And Value Modulation (SVM): A New Method For Integrating Color And Grayscale Imagery 87 Saturation And Value Modulation (SVM): A New Method For Integrating Color And Grayscale Imagery By David W. Viljoen 1 and Jeff R. Harris 2 Geological Survey of Canada 615 Booth St. Ottawa, ON, K1A 0E9

More information

APCAS/10/21 April 2010 ASIA AND PACIFIC COMMISSION ON AGRICULTURAL STATISTICS TWENTY-THIRD SESSION. Siem Reap, Cambodia, April 2010

APCAS/10/21 April 2010 ASIA AND PACIFIC COMMISSION ON AGRICULTURAL STATISTICS TWENTY-THIRD SESSION. Siem Reap, Cambodia, April 2010 APCAS/10/21 April 2010 Agenda Item 8 ASIA AND PACIFIC COMMISSION ON AGRICULTURAL STATISTICS TWENTY-THIRD SESSION Siem Reap, Cambodia, 26-30 April 2010 The Use of Remote Sensing for Area Estimation by Robert

More information

Remote Sensing in an

Remote Sensing in an Chapter 20: Accuracy Assessment Remote Sensing in an ArcMap Environment Remote Sensing Analysis in an ArcMap Environment Tammy E. Parece Image source: landsat.usgs.gov Tammy Parece James Campbell John

More information

Remote Sensing. The following figure is grey scale display of SPOT Panchromatic without stretching.

Remote Sensing. The following figure is grey scale display of SPOT Panchromatic without stretching. Remote Sensing Objectives This unit will briefly explain display of remote sensing image, geometric correction, spatial enhancement, spectral enhancement and classification of remote sensing image. At

More information

How to put the Image Services in the Living Atlas to Work in Your GIS. Charlie Frye, Chief Cartographer Esri, Redlands

How to put the Image Services in the Living Atlas to Work in Your GIS. Charlie Frye, Chief Cartographer Esri, Redlands How to put the Image Services in the Living Atlas to Work in Your GIS Charlie Frye, Chief Cartographer Esri, Redlands Image Services in the Living Atlas of the World Let s have a look: https://livingatlas.arcgis.com

More information

CanImage. (Landsat 7 Orthoimages at the 1: Scale) Standards and Specifications Edition 1.0

CanImage. (Landsat 7 Orthoimages at the 1: Scale) Standards and Specifications Edition 1.0 CanImage (Landsat 7 Orthoimages at the 1:50 000 Scale) Standards and Specifications Edition 1.0 Centre for Topographic Information Customer Support Group 2144 King Street West, Suite 010 Sherbrooke, QC

More information

Module 11 Digital image processing

Module 11 Digital image processing Introduction Geo-Information Science Practical Manual Module 11 Digital image processing 11. INTRODUCTION 11-1 START THE PROGRAM ERDAS IMAGINE 11-2 PART 1: DISPLAYING AN IMAGE DATA FILE 11-3 Display of

More information

Using Soil Productivity to Assess Agricultural Land Values in North Dakota

Using Soil Productivity to Assess Agricultural Land Values in North Dakota Using Soil Productivity to Assess Agricultural Land Values in North Dakota STUDENT HANDOUT Overview Why is assigning a true and full value to agricultural land parcels important? Agricultural production

More information

Introduction to Remote Sensing Part 1

Introduction to Remote Sensing Part 1 Introduction to Remote Sensing Part 1 A Primer on Electromagnetic Radiation Digital, Multi-Spectral Imagery The 4 Resolutions Displaying Images Corrections and Enhancements Passive vs. Active Sensors Radar

More information

GE 113 REMOTE SENSING

GE 113 REMOTE SENSING GE 113 REMOTE SENSING Topic 8. Image Classification and Accuracy Assessment Lecturer: Engr. Jojene R. Santillan jrsantillan@carsu.edu.ph Division of Geodetic Engineering College of Engineering and Information

More information

ENVI Tutorial: Orthorectifying Aerial Photographs

ENVI Tutorial: Orthorectifying Aerial Photographs ENVI Tutorial: Orthorectifying Aerial Photographs Table of Contents OVERVIEW OF THIS TUTORIAL...2 ORTHORECTIFYING AERIAL PHOTOGRAPHS IN ENVI...2 Building the interior orientation...3 Building the exterior

More information

Remote sensing image correction

Remote sensing image correction Remote sensing image correction Introductory readings remote sensing http://www.microimages.com/documentation/tutorials/introrse.pdf 1 Preprocessing Digital Image Processing of satellite images can be

More information

Chapter 1 Overview of imaging GIS

Chapter 1 Overview of imaging GIS Chapter 1 Overview of imaging GIS Imaging GIS, a term used in the medical imaging community (Wang 2012), is adopted here to describe a geographic information system (GIS) that displays, enhances, and facilitates

More information

ArcGIS Pro: What s New in Analysis. Rob Elkins

ArcGIS Pro: What s New in Analysis. Rob Elkins ArcGIS Pro: What s New in Analysis Rob Elkins ArcGIS Pro Welcome ArcGIS Pro: Analysis Rob Elkins ArcGIS Pro 1.0 Now Available = + Includes the complete ArcGIS Platform Application fusion Single, always

More information

Lab 3: Introduction to Image Analysis with ArcGIS 10

Lab 3: Introduction to Image Analysis with ArcGIS 10 Lab 3: Introduction to Image Analysis with ArcGIS 10 Peter E. Price TerraView 2010 Peter E. Price All rights reserved. Revised 03/2011. Revised for Geob 373 by BK Feb 7, 2017. V9 The information contained

More information

Inserting and Creating ImagesChapter1:

Inserting and Creating ImagesChapter1: Inserting and Creating ImagesChapter1: Chapter 1 In this chapter, you learn to work with raster images, including inserting and managing existing images and creating new ones. By scanning paper drawings

More information

Land Cover Analysis to Determine Areas of Clear-cut and Forest Cover in Olney, Montana. Geob 373 Remote Sensing. Dr Andreas Varhola, Kathry De Rego

Land Cover Analysis to Determine Areas of Clear-cut and Forest Cover in Olney, Montana. Geob 373 Remote Sensing. Dr Andreas Varhola, Kathry De Rego 1 Land Cover Analysis to Determine Areas of Clear-cut and Forest Cover in Olney, Montana Geob 373 Remote Sensing Dr Andreas Varhola, Kathry De Rego Zhu an Lim (14292149) L2B 17 Apr 2016 2 Abstract Montana

More information

QGIS LAB SERIES GST 101: Introduction to Geospatial Technology Lab 6: Understanding Remote Sensing and Analysis

QGIS LAB SERIES GST 101: Introduction to Geospatial Technology Lab 6: Understanding Remote Sensing and Analysis QGIS LAB SERIES GST 101: Introduction to Geospatial Technology Lab 6: Understanding Remote Sensing and Analysis Objective Explore and Understand How to Display and Analyze Remotely Sensed Imagery Document

More information

Exercise 4-1 Image Exploration

Exercise 4-1 Image Exploration Exercise 4-1 Image Exploration With this exercise, we begin an extensive exploration of remotely sensed imagery and image processing techniques. Because remotely sensed imagery is a common source of data

More information

Visualizing a Pixel. Simulate a Sensor s View from Space. In this activity, you will:

Visualizing a Pixel. Simulate a Sensor s View from Space. In this activity, you will: Simulate a Sensor s View from Space In this activity, you will: Measure and mark pixel boundaries Learn about spatial resolution, pixels, and satellite imagery Classify land cover types Gain exposure to

More information

Using Imagery for Intelligence Analysis. Jim Michel Renee Bernstein

Using Imagery for Intelligence Analysis. Jim Michel Renee Bernstein Using Imagery for Intelligence Analysis Jim Michel Renee Bernstein Deriving Value from GIS and Imagery Capabilities Evolved Along Separate but Parallel Paths GIS Imagery brings value Imagery Contextual

More information

Remote Sensing. Odyssey 7 Jun 2012 Benjamin Post

Remote Sensing. Odyssey 7 Jun 2012 Benjamin Post Remote Sensing Odyssey 7 Jun 2012 Benjamin Post Definitions Applications Physics Image Processing Classifiers Ancillary Data Data Sources Related Concepts Outline Big Picture Definitions Remote Sensing

More information

This week we will work with your Landsat images and classify them using supervised classification.

This week we will work with your Landsat images and classify them using supervised classification. GEPL 4500/5500 Lab 4: Supervised Classification: Part I: Selecting Training Sets Due: 4/6/04 This week we will work with your Landsat images and classify them using supervised classification. There are

More information

Quantifying Land Cover Changes in Maine

Quantifying Land Cover Changes in Maine Quantifying Land Cover Changes in Maine! STUDENT HANDOUT Introduction Change detection tools enable us to compare satellite data from different times to assess damage from natural disasters, characterize

More information

ArcGIS Pro: What s New in Analysis

ArcGIS Pro: What s New in Analysis Federal GIS Conference February 9 10, 2015 Washington, DC ArcGIS Pro: What s New in Analysis James Sullivan What is analysis? Analysis transforms raw data into information or knowledge. Spatial analysis

More information

I have used Landsat imagery for over 25 years and am currently using the Landsat imagery

I have used Landsat imagery for over 25 years and am currently using the Landsat imagery I have used Landsat imagery for over 25 years and am currently using the Landsat imagery being distributed through the USGS EROS Data Center. Over the past year I have had some issues that I d like to

More information

Remote Sensing in Daily Life. What Is Remote Sensing?

Remote Sensing in Daily Life. What Is Remote Sensing? Remote Sensing in Daily Life What Is Remote Sensing? First time term Remote Sensing was used by Ms Evelyn L Pruitt, a geographer of US in mid 1950s. Minimal definition (not very useful): remote sensing

More information

earthobservation.wordpress.com

earthobservation.wordpress.com Dirty REMOTE SENSING earthobservation.wordpress.com Stuart Green Teagasc Stuart.Green@Teagasc.ie 1 Purpose Give you a very basic skill set and software training so you can: find free satellite image data.

More information

Managing and serving large collections of imagery

Managing and serving large collections of imagery IOP Conference Series: Earth and Environmental Science OPEN ACCESS Managing and serving large collections of imagery To cite this article: V Viswambharan 2014 IOP Conf. Ser.: Earth Environ. Sci. 18 012062

More information

Supervised Land Cover Classification An introduction to digital image classification using the Multispectral Image Data Analysis System (MultiSpec )

Supervised Land Cover Classification An introduction to digital image classification using the Multispectral Image Data Analysis System (MultiSpec ) Supervised Land Cover Classification An introduction to digital image classification using the Multispectral Image Data Analysis System (MultiSpec ) Level: Grades 9 to 12 Windows version With Teacher Notes

More information

How to Access Imagery and Carry Out Remote Sensing Analysis Using Landsat Data in a Browser

How to Access Imagery and Carry Out Remote Sensing Analysis Using Landsat Data in a Browser How to Access Imagery and Carry Out Remote Sensing Analysis Using Landsat Data in a Browser Including Introduction to Remote Sensing Concepts Based on: igett Remote Sensing Concept Modules and GeoTech

More information

University of Technology Building & Construction Department / Remote Sensing & GIS lecture

University of Technology Building & Construction Department / Remote Sensing & GIS lecture 8. Image Enhancement 8.1 Image Reduction and Magnification. 8.2 Transects (Spatial Profile) 8.3 Spectral Profile 8.4 Contrast Enhancement 8.4.1 Linear Contrast Enhancement 8.4.2 Non-Linear Contrast Enhancement

More information

LAB 2: Sampling & aliasing; quantization & false contouring

LAB 2: Sampling & aliasing; quantization & false contouring CEE 615: Digital Image Processing Spring 2016 1 LAB 2: Sampling & aliasing; quantization & false contouring A. SAMPLING: Observe the effects of the sampling interval near the resolution limit. The goal

More information

Digitization of Trail Network Using Remotely-Sensed Data in the CFB Suffield National Wildlife Area

Digitization of Trail Network Using Remotely-Sensed Data in the CFB Suffield National Wildlife Area Digitization of Trail Network Using Remotely-Sensed Data in the CFB Suffield National Wildlife Area Brent Smith DLE 5-5 and Mike Tulis G3 GIS Technician Department of National Defence 27 March 2007 Introduction

More information

TEMPORAL ANALYSIS OF MULTI EPOCH LANDSAT GEOCOVER IMAGES IN ZONGULDAK TESTFIELD

TEMPORAL ANALYSIS OF MULTI EPOCH LANDSAT GEOCOVER IMAGES IN ZONGULDAK TESTFIELD TEMPORAL ANALYSIS OF MULTI EPOCH LANDSAT GEOCOVER IMAGES IN ZONGULDAK TESTFIELD Şahin, H. a*, Oruç, M. a, Büyüksalih, G. a a Zonguldak Karaelmas University, Zonguldak, Turkey - (sahin@karaelmas.edu.tr,

More information

Image Fusion. Pan Sharpening. Pan Sharpening. Pan Sharpening: ENVI. Multi-spectral and PAN. Magsud Mehdiyev Geoinfomatics Center, AIT

Image Fusion. Pan Sharpening. Pan Sharpening. Pan Sharpening: ENVI. Multi-spectral and PAN. Magsud Mehdiyev Geoinfomatics Center, AIT 1 Image Fusion Sensor Merging Magsud Mehdiyev Geoinfomatics Center, AIT Image Fusion is a combination of two or more different images to form a new image by using certain algorithms. ( Pohl et al 1998)

More information

Land cover change methods. Ned Horning

Land cover change methods. Ned Horning Land cover change methods Ned Horning Version: 1.0 Creation Date: 2004-01-01 Revision Date: 2004-01-01 License: This document is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License.

More information

CLASSIFICATION OF HISTORIC LAKES AND WETLANDS

CLASSIFICATION OF HISTORIC LAKES AND WETLANDS CLASSIFICATION OF HISTORIC LAKES AND WETLANDS Golden Valley, Minnesota Image Analysis Heather Hegi & Kerry Ritterbusch 12/13/2010 Bassett Creek and Theodore Wirth Golf Course, 1947 FR 5262 Remote Sensing

More information

Filters. Materials from Prof. Klaus Mueller

Filters. Materials from Prof. Klaus Mueller Filters Materials from Prof. Klaus Mueller Think More about Pixels What exactly a pixel is in an image or on the screen? Solid square? This cannot be implemented A dot? Yes, but size matters Pixel Dots

More information

Satellite image classification

Satellite image classification Satellite image classification EG2234 Earth Observation Image Classification Exercise 29 November & 6 December 2007 Introduction to the practical This practical, which runs over two weeks, is concerned

More information

Assessment of Spatiotemporal Changes in Vegetation Cover using NDVI in The Dangs District, Gujarat

Assessment of Spatiotemporal Changes in Vegetation Cover using NDVI in The Dangs District, Gujarat Assessment of Spatiotemporal Changes in Vegetation Cover using NDVI in The Dangs District, Gujarat Using SAGA GIS and Quantum GIS Tutorial ID: IGET_CT_003 This tutorial has been developed by BVIEER as

More information

ECC419 IMAGE PROCESSING

ECC419 IMAGE PROCESSING ECC419 IMAGE PROCESSING INTRODUCTION Image Processing Image processing is a subclass of signal processing concerned specifically with pictures. Digital Image Processing, process digital images by means

More information

ANNEX IV ERDAS IMAGINE OPERATION MANUAL

ANNEX IV ERDAS IMAGINE OPERATION MANUAL ANNEX IV ERDAS IMAGINE OPERATION MANUAL Table of Contents 1. TOPIC 1 DATA IMPORT...1 1.1. Importing SPOT DATA directly from CDROM... 1 1.2. Importing SPOT (Panchromatic) using GENERIC BINARY... 7 1.3.

More information

AmericaView EOD 2016 page 1 of 16

AmericaView EOD 2016 page 1 of 16 Remote Sensing Flood Analysis Lesson Using MultiSpec Online By Larry Biehl Systems Manager, Purdue Terrestrial Observatory (biehl@purdue.edu) v Objective The objective of these exercises is to analyze

More information

GIS Data Collection. Remote Sensing

GIS Data Collection. Remote Sensing GIS Data Collection Remote Sensing Data Collection Remote sensing Introduction Concepts Spectral signatures Resolutions: spectral, spatial, temporal Digital image processing (classification) Other systems

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Digital Imaging Fundamentals Christophoros Nikou cnikou@cs.uoi.gr Images taken from: R. Gonzalez and R. Woods. Digital Image Processing, Prentice Hall, 2008. Digital Image Processing

More information

Example of Analysis of Yield or Landsat Data Based on Assessing the Consistently Lowest 20 Percent by Using

Example of Analysis of Yield or Landsat Data Based on Assessing the Consistently Lowest 20 Percent by Using GIS Ag Maps www.gisagmaps.com Example of Analysis of Yield or Landsat Data Based on Assessing the Consistently Lowest 20 Percent by Using Soil Darkness, Flow Accumulation, Convex Areas, and Sinks Two aspects

More information

(Refer Slide Time: 1:28)

(Refer Slide Time: 1:28) Introduction to Remote Sensing Dr. Arun K Saraf Department of Earth Sciences Indian Institute of Technology Roorkee Lecture 10 Image characteristics and different resolutions in Remote Sensing Hello everyone,

More information

Digital Image Fundamentals. Digital Image Processing. Human Visual System. Contents. Structure Of The Human Eye (cont.) Structure Of The Human Eye

Digital Image Fundamentals. Digital Image Processing. Human Visual System. Contents. Structure Of The Human Eye (cont.) Structure Of The Human Eye Digital Image Processing 2 Digital Image Fundamentals Digital Imaging Fundamentals Christophoros Nikou cnikou@cs.uoi.gr Those who wish to succeed must ask the right preliminary questions Aristotle Images

More information

Wetlands Investigation Utilizing GIS and Remote Sensing Technology for Lucas County, Ohio: a hybrid analysis.

Wetlands Investigation Utilizing GIS and Remote Sensing Technology for Lucas County, Ohio: a hybrid analysis. Wetlands Investigation Utilizing GIS and Remote Sensing Technology for Lucas County, Ohio: a hybrid analysis. Update on current wetlands research in GISAG Nathan Torbick Spring 2003 Component One Remote

More information

Digital Image Fundamentals. Digital Image Processing. Human Visual System. Contents. Structure Of The Human Eye (cont.) Structure Of The Human Eye

Digital Image Fundamentals. Digital Image Processing. Human Visual System. Contents. Structure Of The Human Eye (cont.) Structure Of The Human Eye Digital Image Processing 2 Digital Image Fundamentals Digital Imaging Fundamentals Christophoros Nikou cnikou@cs.uoi.gr Images taken from: R. Gonzalez and R. Woods. Digital Image Processing, Prentice Hall,

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Digital Imaging Fundamentals Christophoros Nikou cnikou@cs.uoi.gr Images taken from: R. Gonzalez and R. Woods. Digital Image Processing, Prentice Hall, 2008. Digital Image Processing

More information

GST 101: Introduction to Geospatial Technology Lab Series. Lab 6: Understanding Remote Sensing and Aerial Photography

GST 101: Introduction to Geospatial Technology Lab Series. Lab 6: Understanding Remote Sensing and Aerial Photography GST 101: Introduction to Geospatial Technology Lab Series Lab 6: Understanding Remote Sensing and Aerial Photography Document Version: 2013-07-30 Organization: Del Mar College Author: Richard Smith Copyright

More information

RGB colours: Display onscreen = RGB

RGB colours:  Display onscreen = RGB RGB colours: http://www.colorspire.com/rgb-color-wheel/ Display onscreen = RGB DIGITAL DATA and DISPLAY Myth: Most satellite images are not photos Photographs are also 'images', but digital images are

More information

2007 Land-cover Classification and Accuracy Assessment of the Greater Puget Sound Region

2007 Land-cover Classification and Accuracy Assessment of the Greater Puget Sound Region 2007 Land-cover Classification and Accuracy Assessment of the Greater Puget Sound Region Urban Ecology Research Laboratory Department of Urban Design and Planning University of Washington May 2009 1 1.

More information

Using Color-Infrared Imagery for Impervious Surface Analysis. Chris Behee City of Bellingham Planning & Community Development

Using Color-Infrared Imagery for Impervious Surface Analysis. Chris Behee City of Bellingham Planning & Community Development Using Color-Infrared Imagery for Impervious Surface Analysis. Chris Behee City of Bellingham Planning & Community Development NW GIS Users Group - March 18, 2005 Outline What is Color Infrared Imagery?

More information

The (False) Color World

The (False) Color World There s more to the world than meets the eye In this activity, your group will explore: The Value of False Color Images Different Types of Color Images The Use of Contextual Clues for Feature Identification

More information

Digitization and fundamental techniques

Digitization and fundamental techniques Digitization and fundamental techniques Chapter 2.2-2.6 Robin Strand Centre for Image analysis Swedish University of Agricultural Sciences Uppsala University Outline Imaging Digitization Sampling Labeling

More information

Determining Flood Risk in Iowa STUDENT HANDOUT

Determining Flood Risk in Iowa STUDENT HANDOUT ! Determining Flood Risk in Iowa STUDENT HANDOUT 2008 Flood Water Analysis This learning unit will compare two sets of flood boundaries from the June 2008 flood in Cedar Rapids, Iowa. You will extract

More information

Lecture 13: Remotely Sensed Geospatial Data

Lecture 13: Remotely Sensed Geospatial Data Lecture 13: Remotely Sensed Geospatial Data A. The Electromagnetic Spectrum: The electromagnetic spectrum (Figure 1) indicates the different forms of radiation (or simply stated light) emitted by nature.

More information

Exploring the Earth with Remote Sensing: Tucson

Exploring the Earth with Remote Sensing: Tucson Exploring the Earth with Remote Sensing: Tucson Project ASTRO Chile March 2006 1. Introduction In this laboratory you will explore Tucson and its surroundings with remote sensing. Remote sensing is the

More information

INCREASING THE DETAIL OF LAND USE CLASSIFICATION: THE IOWA 2002 LAND COVER PRODUCT INTRODUCTION

INCREASING THE DETAIL OF LAND USE CLASSIFICATION: THE IOWA 2002 LAND COVER PRODUCT INTRODUCTION INCREASING THE DETAIL OF LAND USE CLASSIFICATION: THE IOWA 2002 LAND COVER PRODUCT R. Peter Kollasch, Remote Sensing Analyst Iowa Geological Survey Iowa Department of Natural Resources 109 Trowbridge Hall

More information

NRS 415 Remote Sensing of Environment

NRS 415 Remote Sensing of Environment NRS 415 Remote Sensing of Environment 1 High Oblique Perspective (Side) Low Oblique Perspective (Relief) 2 Aerial Perspective (See What s Hidden) An example of high spatial resolution true color remote

More information

Introduction to Digital Image Processing of Remote Sensed Data

Introduction to Digital Image Processing of Remote Sensed Data Introduction to Digital Image Processing of Remote Sensed Data August 22, 2010 Jensen, 2007 Dichotomy in Remote Sensing physical landscape image acquisition image inference image of landscape Fundamental

More information

Land Cover Change Analysis An Introduction to Land Cover Change Analysis using the Multispectral Image Data Analysis System (MultiSpec )

Land Cover Change Analysis An Introduction to Land Cover Change Analysis using the Multispectral Image Data Analysis System (MultiSpec ) Land Cover Change Analysis An Introduction to Land Cover Change Analysis using the Multispectral Image Data Analysis System (MultiSpec ) Level: Grades 9 to 12 Windows version With Teacher Notes Earth Observation

More information

Lecture 2. Electromagnetic radiation principles. Units, image resolutions.

Lecture 2. Electromagnetic radiation principles. Units, image resolutions. NRMT 2270, Photogrammetry/Remote Sensing Lecture 2 Electromagnetic radiation principles. Units, image resolutions. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

More information

Land Cover Type Changes Related to. Oil and Natural Gas Drill Sites in a. Selected Area of Williams County, ND

Land Cover Type Changes Related to. Oil and Natural Gas Drill Sites in a. Selected Area of Williams County, ND Land Cover Type Changes Related to Oil and Natural Gas Drill Sites in a Selected Area of Williams County, ND FR 3262/5262 Lab Section 2 By: Andrew Kernan Tyler Kaebisch Introduction: In recent years, there

More information

restoration-interpolation from the Thematic Mapper (size of the original

restoration-interpolation from the Thematic Mapper (size of the original METHOD FOR COMBINED IMAGE INTERPOLATION-RESTORATION THROUGH A FIR FILTER DESIGN TECHNIQUE FONSECA, Lei 1 a M. G. - Researcher MASCARENHAS, Nelson D. A. - Researcher Instituto de Pesquisas Espaciais - INPE/MCT

More information

Lesson Plan 1 Introduction to Google Earth for Middle and High School. A Google Earth Introduction to Remote Sensing

Lesson Plan 1 Introduction to Google Earth for Middle and High School. A Google Earth Introduction to Remote Sensing A Google Earth Introduction to Remote Sensing 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 data. Satellites

More information

USING LANDSAT MULTISPECTRAL IMAGES IN ANALYSING FOREST VEGETATION

USING LANDSAT MULTISPECTRAL IMAGES IN ANALYSING FOREST VEGETATION Technical Sciences 243 USING LANDSAT MULTISPECTRAL IMAGES IN ANALYSING FOREST VEGETATION Teodor TODERA teotoderas@yahoo.com Traian CR CEA traiancracea@yahoo.com Alina NEGOESCU alina.negoescu@yahoo.com

More information

Michigan Technological University. Characterization of Unpaved Road Condition Through the Use of Remote Sensing

Michigan Technological University. Characterization of Unpaved Road Condition Through the Use of Remote Sensing Michigan Technological University Characterization of Unpaved Road Condition Through the Use of Remote Sensing Deliverable 6-A: A Demonstration Mission Planning System for use in Remote Sensing the Phenomena

More information

Study Guide: Remote Sensing / GIS Exam #2 Fall 2015 Semester. A Basic Introduction to Thermal Infrared Imaging

Study Guide: Remote Sensing / GIS Exam #2 Fall 2015 Semester. A Basic Introduction to Thermal Infrared Imaging Study Guide: Remote Sensing / GIS Exam #2 Fall 2015 Semester A Basic Introduction to Thermal Infrared Imaging Thermal infrared is the only common radiated (rather than reflected) remote sensing system

More information

Introduction to image processing for remote sensing: Practical examples

Introduction to image processing for remote sensing: Practical examples Università degli studi di Roma Tor Vergata Corso di Telerilevamento e Diagnostica Elettromagnetica Anno accademico 2010/2011 Introduction to image processing for remote sensing: Practical examples Dr.

More information

Monitoring land-cover change by satellite

Monitoring land-cover change by satellite Change in the Right Direction Monitoring land-cover change by satellite by Introduction Problem Can city utility services use remote satellite data, processed with geographic information systems (GIS),

More information

in ArcMap By Mike Price, Entrada/San Juan, Inc.

in ArcMap By Mike Price, Entrada/San Juan, Inc. Interactively Create and Apply Logarithmic Legends in ArcMap By Mike Price, Entrada/San Juan, Inc. This exercise uses the dataset for Battle Mountain, Nevada, that was used in previous exercises. The Geochemistry

More information

The New Rig Camera Process in TNTmips Pro 2018

The New Rig Camera Process in TNTmips Pro 2018 The New Rig Camera Process in TNTmips Pro 2018 Jack Paris, Ph.D. Paris Geospatial, LLC, 3017 Park Ave., Clovis, CA 93611, 559-291-2796, jparis37@msn.com Kinds of Digital Cameras for Drones Two kinds of

More information

Hyperspectral Imagery: A New Tool For Wetlands Monitoring/Analyses

Hyperspectral Imagery: A New Tool For Wetlands Monitoring/Analyses WRP Technical Note WG-SW-2.3 ~- Hyperspectral Imagery: A New Tool For Wetlands Monitoring/Analyses PURPOSE: This technical note demribea the spectral and spatial characteristics of hyperspectral data and

More information

Using QuickBird Imagery in ESRI Software Products

Using QuickBird Imagery in ESRI Software Products Using QuickBird Imagery in ESRI Software Products TABLE OF CONTENTS 1. Introduction...2 Purpose Scope Image Stretching Color Guns 2. Imagery Usage Instructions...4 ArcView 3.x...4 ArcGIS...7 i Using QuickBird

More information

First Exam. Geographers Tools: Gathering Information. Photographs and Imagery. SPIN 2 Image of Downtown Atlanta, GA 1995 REMOTE SENSING 9/19/2016

First Exam. Geographers Tools: Gathering Information. Photographs and Imagery. SPIN 2 Image of Downtown Atlanta, GA 1995 REMOTE SENSING 9/19/2016 First Exam Geographers Tools: Gathering Information Prof. Anthony Grande Hunter College Geography Lecture design, content and presentation AFG 0616. Individual images and illustrations may be subject to

More information

Geocoding DoubleCheck: A Unique Location Accuracy Assessment Tool for Parcel-level Geocoding

Geocoding DoubleCheck: A Unique Location Accuracy Assessment Tool for Parcel-level Geocoding Measuring, Modelling and Mapping our Dynamic Home Planet Geocoding DoubleCheck: A Unique Location Accuracy Assessment Tool for Parcel-level Geocoding Page 1 Geocoding is a process of converting an address

More information

White Paper. Medium Resolution Images and Clutter From Landsat 7 Sources. Pierre Missud

White Paper. Medium Resolution Images and Clutter From Landsat 7 Sources. Pierre Missud White Paper Medium Resolution Images and Clutter From Landsat 7 Sources Pierre Missud Medium Resolution Images and Clutter From Landsat7 Sources Page 2 of 5 Introduction Space technologies have long been

More information

EXERCISE 1 - REMOTE SENSING: SENSORS WITH DIFFERENT RESOLUTION

EXERCISE 1 - REMOTE SENSING: SENSORS WITH DIFFERENT RESOLUTION EXERCISE 1 - REMOTE SENSING: SENSORS WITH DIFFERENT RESOLUTION Program: ArcView 3.x 1. Copy the folder FYS_FA with its whole contents from: Kursdata: L:\FA\FYS_FA to C:\Tempdata 2. Open the folder and

More information

Digital Image Processing

Digital Image Processing Digital Image Processing 1 Patrick Olomoshola, 2 Taiwo Samuel Afolayan 1,2 Surveying & Geoinformatic Department, Faculty of Environmental Sciences, Rufus Giwa Polytechnic, Owo. Nigeria Abstract: This paper

More information

Urban Classification of Metro Manila for Seismic Risk Assessment using Satellite Images

Urban Classification of Metro Manila for Seismic Risk Assessment using Satellite Images Urban Classification of Metro Manila for Seismic Risk Assessment using Satellite Images Fumio YAMAZAKI/ yamazaki@edm.bosai.go.jp Hajime MITOMI/ mitomi@edm.bosai.go.jp Yalkun YUSUF/ yalkun@edm.bosai.go.jp

More information

The NAGI Fusion Method: A New Technique to Integrate Color and Grayscale Raster Layers

The NAGI Fusion Method: A New Technique to Integrate Color and Grayscale Raster Layers Mountain and Glacier Mapping The NAGI Fusion Method: A New Technique to Integrate Color and Grayscale Raster Layers Rajinder S. Nagi and Aileen R. Buckley Esri, Redlands, CA, USA rnagi@esri.com, abuckley@esri.com

More information

GEOG432: Remote sensing Lab 3 Unsupervised classification

GEOG432: Remote sensing Lab 3 Unsupervised classification GEOG432: Remote sensing Lab 3 Unsupervised classification Goal: This lab involves identifying land cover types by using agorithms to identify pixels with similar Digital Numbers (DN) and spectral signatures

More information

Image Registration Exercise ESPM 5295

Image Registration Exercise ESPM 5295 Background: We often digitize data from orthorectifed aerial photographs. These photographs have been processed to remove tilt and terrain errors to the level practical and required by the original contract.

More information

Remote Sensing for Rangeland Applications

Remote Sensing for Rangeland Applications Remote Sensing for Rangeland Applications Jay Angerer Ecological Training June 16, 2012 Remote Sensing The term "remote sensing," first used in the United States in the 1950s by Ms. Evelyn Pruitt of the

More information

Final Examination Introduction to Remote Sensing. Time: 1.5 hrs Max. Marks: 50. Section-I (50 x 1 = 50 Marks)

Final Examination Introduction to Remote Sensing. Time: 1.5 hrs Max. Marks: 50. Section-I (50 x 1 = 50 Marks) Final Examination Introduction to Remote Sensing Time: 1.5 hrs Max. Marks: 50 Note: Attempt all questions. Section-I (50 x 1 = 50 Marks) 1... is the technology of acquiring information about the Earth's

More information

Computers and Imaging

Computers and Imaging Computers and Imaging Telecommunications 1 P. Mathys Two Different Methods Vector or object-oriented graphics. Images are generated by mathematical descriptions of line (vector) segments. Bitmap or raster

More information