Raster Data and MapAlgebra Flashcards

1
Q

Raster Inputs for storage

A

Inputs
-Spatial Analyst reads any supported raster format in ArcGIS
-Output as grids, gdb rasters, Tiff, or ERDAS
-Stores Integer or floating-point values.
Other formats (display only)
-JPEG, GIF, MrSID, raw binary, etc.
BEST PRACTICE- create a File geodatabase to store analysis outputs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

MapAlgebra

A

Operations using raster GIS data involve MapAlgebra

  • Data structure- grid cells containing numbers
  • Grid layers can be combined algebraically
  • Cell by Cell Combination of Raster Data Layers
  • Works well for continuous data (population, precipitation, elevation)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Con IsNull statements

A

Determines which values from input raster are NoData on cell-by-cell basis.

  • Returns value of 1 if input value is NoData and 0 for cells that are not
  • If layer A is null, use layer b. If layer A is not null, use layer c.
  • Con (ISNULL(LayerA), LayerB, LayerC)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Cell statistics function in ArcMap

A

Helps to detect change between corresponding cells in multiple raster surfaces.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Neighborhood window operations

A

Calculates a statistic for a specified window within the raster.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Neighborhood focal mean and majority

A

Neighborhood focal mean- smooths raster, effects grow larger with increasing window size or repeated applications, good for removing noise or false values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do NoData values affect MapAlgebra operations?

A

?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

No Data

A

Specific value to indicate lack of data

-often replaced by zero in other formats

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Map Algebra- Arithmetic Operators

A

Allow addition, subtraction, multiplication, and division

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Map Algebra- Relational Operators

A

Allow to build logical tests, returning values of true (1) and false (0).
-Example, find vegetation “equal to” mixed coniferous forest.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Map Algebra- Boolean Operators

A

Such as “and”, and “or,” allow to chain logical tests, returning values of true (1) and false (0).
-Example, find all slopes that are “greater than” 45 degrees.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Map Algebra- Local Operations

A

Cell-to-cell correspondence: only 1 source cell contributes to the target cell value in the output layer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Map Algebra- Neighborhood Operations

A

A group of nearby source cells contributes to the target cell value in the output layer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Map Algebra- Zonal Operations

A

Zonal operations compute an output raster dataset where the output value for each location depends on the value of the cell at the location and the association that location has within a cartographic zone.
-For raster data, a zone is all cells with the same value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Map Algebra- Global Operations

A

Global, or per-raster, operations compute an output raster dataset in which the output value at each cell location is potentially a function of all the cells combined from the various input raster datasets. Two main groups of global operations: Euclidean distance and weighted distance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

CON statement

A

Performs a conditional if/else evaluation on each of the input cells of an input raster