GEO2440 Spatial Data Analysis 1

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards

Measurement

Measuring on screen.

This includes working out a measurement. E.g. distance, area.

And also adding geometry attributed to work out lengths of already established segments.

2
New cards

Types of measurement

Cartesian

Ellipsoid

3
New cards

Cartesian

Treating the Earth as flat.

E.g. British National Grid.

4
New cards

Ellipsoid

Treating the Earth as an ellipsoid.

5
New cards

Map projection

The way a spherical Earth is transformed into a flat one.

Bigger the distance, the worse the difference is.

6
New cards

Queries

A request to select features or records from a database.

Often written as a statement or logical expression.

7
New cards

Combining queries

AND

OR

NOT

OR AND

AND NOT

<p>AND</p><p>OR</p><p>NOT</p><p>OR AND </p><p>AND NOT</p>
8
New cards

What do queries produce?

A map.

A binary answer where true = 1 and false = 0.

9
New cards

Types of queries

Aspatial

Spatial

10
New cards

Aspatial queries

Questions about attributes.

In a table, e.g. pulling out road types and querying the attributes.

11
New cards

Aspatial query example 1

Select areas where mortality rate is more than 58.0 per 1000.

12
New cards

Example of combining aspatial queries

Identify states both north of Arkansas and larger than 84000 sq.km

North of Arkansas, larger than 84000 sq.km are attributes.

Create layers and perform the Boolean ‘AND’ operation.

13
New cards

Spatial queries

A statement or logical expression that selects geographic features based on a location or spatial relationship.

Do they touch? Intersect? Cross? Overlap? re they within a certain distance of one another?

<p>A statement or logical expression that selects geographic features based on a location or spatial relationship. </p><p>Do they touch? Intersect? Cross? Overlap? re they within a certain distance of one another? </p>
14
New cards

Map overlay (spatial query)

The geometric intersection of two or more datasets to combine, erase, modify or update features in a new output dataset.

Can be both raster and vector

15
New cards
<p>Vector map overlay</p>

Vector map overlay

Overlays points, lines OR polygons in one layer over polygons in another layer.

Operations: erase, identity, intersect, spatial join, symmetrical difference, union, update, split, clip, select.

<p>Overlays points, lines OR polygons in one layer over polygons in another layer.</p><p>Operations: erase, identity, intersect, spatial join, symmetrical difference, union, update, split, clip, select.</p>
16
New cards

Vector map overlay: union

Combines two layers.

17
New cards

Vector map overlay: symmetrical difference

Removes overlap.

18
New cards

Vector map overlay: identity

Crossover between spatial and aspatial - uses an attribute table.

19
New cards

Vector map overlay: erase

Erases a section.

Opposite of clip.

20
New cards

Vector map overlay: split

Splits an original into sections based on the other layer.

21
New cards

Vector map overlay: intersect

Computes a geometric intersection of the input features. Features or portions of features which overlap in all layers and/or feature classes will be written to the output feature class.

Returns only where both are true.

E.g.: where a 200m road buffer and agricultural land intersect.

<p>Computes a geometric intersection of the input features. Features or portions of features which overlap in all layers and/or feature classes will be written to the output feature class. </p><p>Returns only where both are true. </p><p>E.g.: where a 200m road buffer and agricultural land intersect. </p>
22
New cards

Vector map overlay: clip

A command that extracts features from one feature class that reside entirely within a boundary defined by features in another feature class.

Used to cut out a piece of one feature class using one (or more) features in another feature class as a cookie cutter to create a geographic subset of the features.

E.g. clip the coastal paths in England to just a nature reserve boundary.

23
New cards
<p>Raster map overlay</p>

Raster map overlay

Overlays the pixel or grid cell values in each data layer using Boolean, arithmetic or relational operators to produce a new value in the composite data layer.

<p>Overlays the pixel or grid cell values in each data layer using Boolean, arithmetic or relational operators to produce a new value in the composite data layer. </p>
24
New cards

Map algebra

A language for combining data layers by applying a combination of operators (mathematical, Boolean. relational) to create new data layers.

25
New cards

Mathematical functions

Here are examples of operations that you can use in map algebra:

Arithmetic operations (addition, subtraction, multiplication, division)

Statistical operations (minimum, maximum, average, median)

Relational operations (greater than, smaller than, equal to)

Trigonometric operations (sine, cosine, tangent, arcsine)

Exponential and logarithmic operations (exponent, logarithm).

26
New cards

Mathematical map algebra

Local operations

Global operations

Focal operations

Zonal operations

27
New cards

Local operations

Map algebra on a cell-by-cell basis.

E.g. two rasters stacked on top of one another, you add each cell one by one.

<p>Map algebra on a cell-by-cell basis. </p><p>E.g. two rasters stacked on top of one another, you add each cell one by one.</p>
28
New cards

Global operations

Apply a bulk change to all cells in a raster.

E.g. add a value of 1 to all grid cells.

<p>Apply a bulk change to all cells in a raster.</p><p>E.g. add a value of 1 to all grid cells.</p>
29
New cards

Focal operations

Spatial functions that compute an output value of each cell using neighborhood values.

Can be used to smooth an image.

<p>Spatial functions that compute an output value of each cell using neighborhood values.</p><p>Can be used to smooth an image.</p>
30
New cards

Zonal operations

Apply a math function to a group of cells within a specified zone.

E.g. to find out how much rain is in a watershed.

<p>Apply a math function to a group of cells within a specified zone.</p><p>E.g. to find out how much rain is in a watershed.</p>
31
New cards

Boolean map algebra

Cells that meet criteria are coded in the output raster with a 1, while those that are false receive a 0.

Can be raster or vector.

<p><span>Cells that meet criteria are coded in the output raster with a 1, while those that are false receive a 0.</span></p><p><span>Can be raster or vector.</span></p>
32
New cards

Relational map algebra

Evaluates specific conditions such as where the slope is less than 10 degrees.

Will output a true (1) and a false (0).

33
New cards

Raster calculator

Treats a layer like a variable in an equation.