Raster data Flashcards

1
Q

What are the 5 conceptual steps to creating a raster file?

A
  • Choose grid resolution (1/2 the length and 1/4 the area of the smallest feature to map)
  • set data type (integer/real)
  • overlay grid over study area
  • assign attribute code to each grid cell
  • repeat process for each map layer
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the 5 ways we can input raster data into a GIS?

A
  • Manual raster coding
  • Raster scanning (aerial photos/ hard copy maps)
  • Existing digital raster data
  • Remote sensing imagery
  • Vector to raster conversion
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the steps of vector to raster conversion?

A
  • Code polygons
  • Overlay grid cells on top of polygons
  • assign attribute code to each polygon
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do we convert raster to vector?

A
  • Boundaries are set up between different attribute classes

- A polygon is created by storing x and y coordinates for the points adjacent to the boundaries

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

In terms of cell values, grid cell representation is often used for _ data and _ data

A
  • Categorical (nominal or ordinal)

- quantitative (interval or ratio)

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

You can code data as

A
  • Integers
  • Real values (decimals)
  • Alphabetic values
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the 4 methods of encoding?

A
  • Presence/absence (if a single feature even touches the cell, the cell is that attribute); for polygons, the polygon which covers the highest # of cells is recorded
  • Centroid of cell: something’s only recorded when it touches the centre of the cell (only good for areal data/ continuously variable quantities like elevation)
  • Dominant type: encodes the presence of something if it takes up more than 50% of cell (most common method)
  • percent occurrence
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what can raster data represent?

A
  • Visual images
  • discrete value
  • continuous value
  • null data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are methods for organizing multiple raster layers?

A
  • Band interleaved by line (BIL)
  • Band interleaved by pixel (BIP)
  • Band sequential (BSQ)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Explain BSQ

A
  • stores each characteristic in separate file
  • good for compression
  • bad if focus on 1 area
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Explain BIP

A
  • all values for a pixel grouped together
  • good for focusing on multi-area characteristics
  • bad if want to remove or add a layer
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

T or F, it’s impossible to convert between BIP, BIL, and BSQ.

A

F

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

What are the 4 data compression methods?

A
  • Run length encoding
  • Chain encoding
  • Block encoding
  • Quadtrees
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the limitation that run length encoding has?

A

-File is read left to right, one row at a time

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

How does chain encoding work?

A
  • Scans rows and columns to define 2D regions with same cell values
  • starting point (origin) and direction to follow around the boundary
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How does block encoding work?

A
  • Areas of common cell values are represented with single value
  • square blocks used to tile the area to be represented (blocks of the largest size possible)
  • store top left corner
17
Q

What are the 4 disadvantages of raster data structure?

A
  • Reduced spatial accuracy of discrete objects
  • need for large storage capacity
  • some spatial relationships (contiguity and connectivity) may be altered or lost
18
Q

Explain quadtrees

A
  • Keep dividing the grid into quarters until you have the same attribute for the square.
  • good for homogeneous areas
19
Q

what are some advantages of raster data structure?

A
  • abundant data sources
  • raster algorithms are often computationally simpler and faster than vector
  • better for modelling continuous features than vector and analyses that involve spread, flow, or diffusion processes (i.e. surface modelling, overlay)