0% found this document useful (0 votes)
22 views14 pages

Raster Data Analysis: - Cells (Pixels) - Cell Value

This document provides an overview of raster data analysis in ArcGIS, including the raster data model, attributes, converting between raster and vector data, and tools for raster analysis. It describes the ArcGIS Spatial Analyst extension for raster analysis and the Raster Calculator tool for performing map algebra expressions on multiple raster inputs. Finally, it provides examples of using the Raster Calculator for operations like reclassifying values, masking, zonal functions, and ordered weighted averaging.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views14 pages

Raster Data Analysis: - Cells (Pixels) - Cell Value

This document provides an overview of raster data analysis in ArcGIS, including the raster data model, attributes, converting between raster and vector data, and tools for raster analysis. It describes the ArcGIS Spatial Analyst extension for raster analysis and the Raster Calculator tool for performing map algebra expressions on multiple raster inputs. Finally, it provides examples of using the Raster Calculator for operations like reclassifying values, masking, zonal functions, and ordered weighted averaging.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

Raster Data Analysis

Raster Data Model


Cells (Pixels)
Cell value

x, y cell sizes
Geographic coordinates

Attributes

Raster to Vector / Vector to Raster

V2R

R2V

ArcGIS Spatial Analyst


Mainly for raster data analysis
Arctoolbox: Spatial Analyst Tools
Spatial Analyst Toolbar
Raster Calculator

Raster Calculator
Single-line map algebraic expression
Multiple inputs in a single expression.
Multiple Spatial Analyst tools in a single expression.

Raster Calculator Syntax


Operators
inraster1 + inraster2

Tools & Functions (tool names are case sensitive!)


Aspect("C:/Datat/inraster")

Tool parameters
Slope(dem, "PERCENT_RISE")

Spatial Analyst Option Menu (ArcGIS 9.x)

Geoprocessing Environment Setting (ArcGIS 10)

Mask & Extent

Raster Calculator Functions


Arcinfo
Workstation /
Arcdoc
> 200 functions

Raster Operations
Local operation
(majority)

Focal operation
(focalmajority)

Global operation
(costdistance)

Zonal operation
(zonalmajority)

Application functions

Local Operator: Combine

Working with Nodata in RC


ISNULL: convert Nodata to a value
SETNULL: set cell value to Nodata
CON: conditional function
Examples
Replace Nodata with 0 in a DEM
con(isnull([dem]), 0, [dem])
Set slope > 15 to Nodata on the DEM
setnull([slope]> 15, [dem])

ISNULL() Function

SETNULL() Function

CON() Function

Raster Clip Example

Output A

Output B

Output C

10

Raster Clip

11

Raster Buffering

Point Features to Raster


Con( isnull(pointg), 0, 1)

12

13

Implementing Ordered Weighted


Average in ArcGIS
Raster Calculator
r1 = rank(1, [factor1], [factor2], [factor3])
r2 = rank(2, [factor1], [factor2], [factor3])
r3 = rank(3, [factor1], [factor2], [factor3])
owavg = [r1] * 0.5 + [r2] * 0.3 + [r3] * 0.2

14

You might also like