A simple, storage intensive format best suited for continuous fields.
Represents space continuously:
Multiple attributes, require multiple bands
Resolution (aka cell size) is the smallest resolvable feature. Extent (aka domain) depends on number of rows and columns along with the cell size.
1 m cell size
5 rows x 5 columns = 25 cells
Covers 5 m x 5 m = 25 m2
Resolution: 10 m cell size = 100 m2 area per cell.
Extent: varies with number of cells and cell size.
Rows | Columns | Extent |
---|---|---|
5 | 5 | 50 m x 50 m = 2,500 m2 |
5 | 10 | 50 m x 100 m = 5,000 m2 |
100 | 100 | 1,000 m x 1,000 m = 1,000,000 m2 |
Raster resolution is dictated by the number of rows and columns, raster extent is dictated by the cell size.
One cell = one value. What if it covers multiple values?
A: Winner take all
B: Cell center
Other options?
Loss of information during rasterization.
This term describes how information is lost when creating a raster image.
The number of cells per image dictates file size.
Imagine four images that all have the same extent:
Bands | Cell Size | Rows | Columns | # of Cells |
---|---|---|---|---|
1 | 100m | 10 | 10 | 100 |
1 | 1m | 1000 | 1000 | 1,000,000 |
3 | 100m | 10 | 10 | 300 |
3 | 1m | 1000 | 1000 | 3,000,000 |
Downloading, uploading, and processing times will all increase as the file size increases.
You downloaded a 3 band LANDSAT8 image covering the UBC campus. The image’s dimensions are 6000m north/south (rows are vertical) by 4500m east/west (columns are horizontal) and the resolution (aka cell size) is 30m. How many cells does the image contain?
You downloaded a 3 band LANDSAT8 image covering the UBC campus. The image’s dimensions are 6000m north/south (rows are vertical) by 4500m east/west (columns are horizontal) and the resolution (aka cell size) is 30m. How many cells does the image contain?
\(6000 \div 30 = 200\) rows
\(4500 \div 30 = 150\) columns
\(200 \times 150 = 30,000\) cells (per band)
\(30,000 \times 3 = 90,000\) cells in total
Raster data can be used to evaluate algebraic expressions easily and efficiently.
Raster model is well suited for continuous phenomena:
One of the most common/functional raster formats, based of the Tag Image File Format (TIFF).
Raster data can come in many different formats. You will likely encounter when working with raster data include:
The Raster Calculator tool lets you:
We’re going to work with LANDSAT8 data in lab.
The lines on the chart below are referred to as a spectral reflectance curves.
\(NDVI = \frac{(NIR-Red)}{(NIR+Red)}\)
What does NDVI tell us?