Attribute Data Flashcards

1
Q

What are the 2 common vector file formats?

A

ArcGIS Geodatabase and Shapefiles.

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

What is an ArcGIS Geodatabase?

A

A silo of different point, line, and/or polygon feature classes, associated attribute data, and raster data sheets.

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

What is a shape file?

A

A loosely-proprietary ArcGIS (ESRI) data format for storing georefrencing data, geometry, and attributes.

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

What does the anatomy of attributes in GIS include?

A

Data stored in tables by fields and records, all records have the same fields, and every field has a data type.

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

What is a character?

A

Text or #’s formatted as text (strings)

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

What is an integer?

A

A # stored without decimals (shot +/- 32700, long +/- 2140000000)

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

What is a Floating Point?

A

w decimals (single precision 10^78, double precision 10^208)

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

What is a BLOB?

A

A binary large object (media attachments)

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

What di feature attribute tables store and access?

A

Spatial information (ie. feature geometry)

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

What kind of data do non-spatial attribute tables store?

A

Data with no explicit spatial component (though can be linked to spatial data through feature attribute table)

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

What are flat files?

A

All data collected in one large file.

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

What are the issues with flat files?

A

Data redundancy and data consistency.

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

What are keys?

A

Data stored in flat files that are associated by shared attributes.

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

What is a primary key

A

It is one or more attribute in a table whose value can uniquely identify a record.

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

What is a foreign key?

A

Data from a different table that can join multiple tables.

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

What are cardinalities?

A

Joined tables in relational databases that have four possible relationships (1:1, 1: many, many:1, m:m)

17
Q

What is an outer join?

A

The default to “keep all records”

18
Q

What is an inner join?

A

The option to “keep only matching records”

19
Q

What is structured query language?

A

A standard database protocol adopted by most ‘relational’ databases.

20
Q

What is a query?

A

A question posed to the database in the form of a SELECT statement.

21
Q

What are the inputs that can be modified by functions?

A

Select (.* [records]), from (.MPs [a table]), and where (“party”)

22
Q

What are spatial joins?

A

A way to match records from a join layer to coincident features in a target layer

23
Q

What is the key characteristic of spatial joins?

A

No change in output layer geometry.