Top Banner
Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal geodatabase Text file (comma or tab- delimited meaning field
15

Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Jan 06, 2018

Download

Documents

Gerald Owen

Table Properties
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Table formatsArcGIS reads table in many formats:

dBase format (shapefile) INFO format (workstation ArcInfo)Geodatabase table (MS Access in

case of personal geodatabaseText file (comma or tab-delimited

meaning field separated by commas)

Page 2: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Tables• Tables contain attribute data• Many formats, one interface

Page 3: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Table Properties

Page 4: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

How do you display 2 tables side by side?

Page 5: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Fields• Fields have specific types available• Must be defined before use• Once defined, cannot be changed

Page 6: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Field types in TablesExample:

Name: SueDOB: 5/15/1985Weight: 135 lbHeight: 5.7 feetSS#: 222555999

Text Date Short Long BLOB FloatSue 5/15/1985 135 222555999 5.7

Page 7: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Field characteristics• Length

– The total characters a text field can storeLength = 10Maple St.Maple Stre

Page 8: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Field characteristics

Precision 3: 256Precision 8: 1965.128Precision 10: -1922.5500

Scale 3: 0.001Scale 5: 0.00001

• Precision–The total width of digits a numeric field can store

• Scale–The number of decimal places

Page 9: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

Scale & PrecisionWhen defining a number field (float & double), designate a storage width (precision) and the number of decimal places (scale)

Page 10: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

SQL Queries

Page 11: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

What is this map showing?

Page 12: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

How do I select all the Democratic districts?

Page 13: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

How do I select all the Democratic districts?

Page 14: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.

True or False?• A field named AREA in a shapefile will always have

the correct area?– False.

• A field named AREA in a Geodatabase will always have the correct area?– False.

Page 15: Table formats ArcGIS reads table in many formats: dBase format (shapefile) INFO format (workstation ArcInfo) Geodatabase table (MS Access in case of personal.