ch 10 Flashcards

1
Q

Spatial Joins, overlay types, area-weighted recalculation, union vs intersect

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

_____ features remain whole
________features are split to create new features, as in the lowest layer shown here

A

Joined, Overlay

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

What is a key in table joins? Give an example

A

A common field used to link two tables into a single table in a table join. STATE_FIPS

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

When joining, The _____table receives the additional information
The _____table provides the additional information

A

target , join

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

What is a spatial join?

A

A join where the records are matched using a spatial relationship instead of a key field

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

Spatial join using intersect

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

Spatial join using proximity

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

Spatial join using containment

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

Cardinality of cities and airports

A

In the cities and airports example, only one airport can be closest to a city
only one airport record is expected to match each city

A one-to-one cardinality is expected
one to one join
no merge rule needed

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

Cardinality of septics and geology

A

Geology to septics = septics (many): geology (1)
In the septics and geology example, a many-to-one cardinality is expected
A one to one join works well and no merge rules are needed because only one geology record is expected to match each septic

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

Cardinality of highways and soils

A

Soils to Highways = highways (1): soils (many)
Each highway is expected to cross multiple soil units, so a one-to-many cardinality is expected
A one to many join type would create multiple copies of each highway to match every soil unit it crosses, which is not very helpful
A one to one join type with merge rules works well for this problem
Each field from the soils table can be assigned a merge rule to summarize the information from the records that match each highway

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

Setting up a join (1 of 2)A congressional staffer must provide a list of representatives from districts with at least 10 deaths from earthquakes
He has a feature class of districts and a feature class of earthquakes with deaths and damage information

A

The desired output table is a list of districts with the representative names and the total number of deaths
Therefore, districts (cd114) is the target layer and earthquakes (quakehis) is the join layer
The records should be matched if the quake touches the district, so intersect is the appropriate spatial operator
The required output fields include the district ID, the party, the representative’s name, and the sum of the earthquake deaths
One district can match many quakes, but we want summed values rather than duplicate districts, so a one to one join with a sum merge rule on the deaths field is needed

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

What is the classic overlay?

A

Information from both parents is copied to the child polygon from the output table
By splitting features, overlay avoids the one-to-many relationships that plague spatial joins

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

Describe intersect overlays

A

Intersect only keeps the areas that overlap
Only the polygon regions within the circles remain in the output.

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

describe union overlays

A

Union keeps all areas from both inputs, whether they overlap or not

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

what is usually the goal for union overlays?

A

In union, the usual goal is to combine all the data and the extent of the data sets is typically the same

17
Q

what is usually the goal for intersect overlays?

A

In intersect, the usual goal is to find overlapping areas where certain conditions hold (suitability analysis)

18
Q

____ overlay can only be performed with two polygon inputs
_______overlay can be applied to all geometry types

A

Union, Intersection

19
Q
A