Week4: Raster-based Data structures Flashcards

1
Q

In simple raster structures, there is ..

A

a 1-1 correspondence between data value, cell & location

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

Raster-based data structures - Efficiency issues

A

1) simple raster-based structure inefficient in terms of data storage: regardless of the data distribution, it uses the same amount of disk space
- can also degrade data processing

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

Geographic phenomena often show a degree of …

A

spatial autocorrelation: similar values near each other

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

Run length encoding

A

1) Useful when there are just a few attribute values
2) Highly inefficient when there is a high degree of spatial variability in the data
3) Lossless compression method

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

Raster-based structures: Efficiency issues

A

1) Efficiently store data: compression methods

2) Efficiently access/retrieve/scan data: scan order methods

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

Scan order methods

A

1) Mainly concerned with performance in terms of data processing
2) Define a total order on cells of a 2D grid: assign numbers to the cells in the order they are visited
- i.e. embed a 2D space into a 1D space
3) Also called space filling curves
4) Some methods partially preserve proximity:
- two cells that are close in space are likely to be close in total order

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

Scan order methods: types

A

1) Row method
2) Row Prime method
3) Morton scan method (preserves spatial proximity relatively well)
- Also, Z-buffering
4) Morton-values (Z-values)
5) Peano-Hilbert curve

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