Attribute Data Flashcards
What are the 2 common vector file formats?
ArcGIS Geodatabase and Shapefiles.
What is an ArcGIS Geodatabase?
A silo of different point, line, and/or polygon feature classes, associated attribute data, and raster data sheets.
What is a shape file?
A loosely-proprietary ArcGIS (ESRI) data format for storing georefrencing data, geometry, and attributes.
What does the anatomy of attributes in GIS include?
Data stored in tables by fields and records, all records have the same fields, and every field has a data type.
What is a character?
Text or #’s formatted as text (strings)
What is an integer?
A # stored without decimals (shot +/- 32700, long +/- 2140000000)
What is a Floating Point?
w decimals (single precision 10^78, double precision 10^208)
What is a BLOB?
A binary large object (media attachments)
What di feature attribute tables store and access?
Spatial information (ie. feature geometry)
What kind of data do non-spatial attribute tables store?
Data with no explicit spatial component (though can be linked to spatial data through feature attribute table)
What are flat files?
All data collected in one large file.
What are the issues with flat files?
Data redundancy and data consistency.
What are keys?
Data stored in flat files that are associated by shared attributes.
What is a primary key
It is one or more attribute in a table whose value can uniquely identify a record.
What is a foreign key?
Data from a different table that can join multiple tables.