Lab 1 Flashcards

1
Q

What’s the difference between calculating statistics between raster (local, per-cell analysis), within neighborhoods, and within zones?

A

Difference between local, neighborhood, and zonal:
a. The local tools are those where the value at each cell location on the
output raster is a function of the values from all the inputs at that location.

b. Neighborhood tools create output values for each cell location based on
the location value and the values identified in a specified neighborhood.
The neighborhood can be of two types: moving or search radius.

c. The Zonal tools allow you to perform analysis where the output is a result
of computations performed on all cells that belong to each input zone. A
zone can be defined as being one single area of a particular value, but it can also be composed of multiple disconnected elements, or regions, all
having the same value. Zones can be defined by raster or feature
datasets. Rasters must be of integer type, and features must have an
integer or string attribute field.

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

What is a raster?

A

A spatial data model that defines space as an array of equally sized cells, arranged in rows and columns, and composed of single or multiple bands (layers). Each cell contains an attribute value. Unlike a vector structure, which stores coordinates explicitly, raster coordinates are inherently contained in the ordering of the matrix. Groups of cells that share the same value represent the same type of geographic feature.

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

What is a cell?

A

A cell is the smallest unit of information in raster data. Each cell represents the numeric value of some measure at the corresponding unit area location on the earth.

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

What is the most common way to access Spatial Analyst functionality?

A

With the geoprocessing tools

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

What are three ways to perform Spatial Analyst operations?

A
  1. Running individual tool dialogs
  2. combine tools with Model builder
  3. Automate work flows and create new tools with Pyton.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you enable the Spatial Analyst extension?

A

To enable an extension, select Extensions from the Customize menu in ArcMap,
ArcCatalog, ArcGlobe, or ArcScene (the application that comes with the ArcGIS
3D Analyst extension).

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

What are the shape of raster cells?

A

Square

It is important to note that Spatial Analyst performs operations on square cells
only. Thus, the size of each cell, known as its resolution, must be the same in
each dimension.

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

Describe some of the various functionality available in the Surface toolset of the Spatial
Analyst extension.

A

With these tools, you can derive new information about a surface dataset. For
each location, you can determine the angle of the surface (slope), the steepest
downslope direction (aspect), or the second derivative of the surface (curvature).
You can also generate a line dataset that connects locations of equal value
(contours), create a shaded relief, calculate the volume changes between two
surfaces, and determine the visibility of locations.

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

Describe the two interactive tools available in the Spatial Analyst toolbar.

A

There are two interactive tools you can use on the Spatial Analyst toolbar.
a. The Create Contour interactive tool enables you to create individual
contours (lines that connect cells of equal value) at specific locations on a
single-band raster. You might want to identify locations at the same
elevation, with the same temperature, or with the same atmospheric
pressure.
b. The Histogram interactive tool enables you to explore the distribution of
values in a raster layer. For example, you might want to know the number
of cells (the count) with a certain value, such as the number of cells that
are forested land or vacant property.

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

What is map algebra?

A

Map Algebra is a simple and powerful algebra with which you can execute all
Spatial Analyst tools, operators, and functions to perform geographic analysis.

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

What are three ways to use Map Algebra?

A
  1. the Raster Calculator tool
  2. The Python window
  3. Your favourite Python integrated development environment (IDE)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly