SlideShare une entreprise Scribd logo
1  sur  19
Introduction to Attributes 
Prof. Dr. Sajid Rashid Ahmad 
sajidpu@yahoo.com 
Atiqa Ijaz Khan _ Demonstrator 
atiqa_ss09@yahoo.com
Intro to Attributes 
• “Non-spatial information about a geographic feature in a GIS, usually stored in a 
table and linked to the feature by a unique identifier.” (ESRI) 
• Attributes defines how information that specifies a particular feature will be 
displayed and labeled on a map. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
2
Examples 
• For vectors: 
• It is usually associated back-end information, like, name, population, length, width, etc. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
3
Examples 
• For raster: 
• Each cell associated with unique properties like rainfall, temperature, slope, etc. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
4
Who ‘ll define the image? 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
5
Types of Attributes 
• Following are the types of attributes that are used in Arc GIS data fields: 
• Number 
• Text 
• Date/Time 
• BLOB (Binary Large Object) 
• GUIDs (Globally Unique Identifiers) 
• Geometry 
• Raster 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
6
Friday, Institute of Geology, University of the Punjab November 21, 2014 
7 
ArcGIS data type Access data type Notes 
OBJECTID Long Integer OBJECTID is an AutoNumber field. 
SHORT INTEGER Integer 
LONG INTEGER Long Integer 
FLOAT Single 
DOUBLE Double 
TEXT Text 
DATE Date/Time 
BLOB OLE Object* 
GUID Number Replication ID, duplicates allowed 
GEOMETRY OLE Object* 
RASTER Long Integer 
*OLE: Object Linking and Embedding: That are created in other applications and then linked with database.
Numbers 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
8 
• One can store numbers in one of four numeric data types: 
• Short integer 
• Long integer 
• Float (single-precision floating-point numbers) 
• Double (double-precision floating-point numbers) 
• One has to chose between: 
• Whole numbers and fractional 
• Long or short integer 
• Double or float
9 Data type Storable range Size (Bytes) Applications 
Short integer -32,768 to 32,767 2 
Numeric values without 
fractional values within 
specific range; coded 
values 
Long integer 
-2,147,483,648 to 
2,147,483,647 
4 
Numeric values without 
fractional values within 
specific range 
Float (single-precision 
floating-point number) 
approximately -3.4E38 to 
1.2E38 
4 
Numeric values with 
fractional values within 
specific range 
Double (double-precision 
floating-point 
number) 
approximately -2.2E308 to 
1.8E308 
8 
Numeric values with 
fractional values within 
specific range 
Friday, Institute of Geology, University of the Punjab November 21, 2014
• If you just need to store whole numbers, such as 12 or 12,345,678, specify a 
short or long integer. If you need to store fractional numbers that have decimal 
places, such as 0.23 or 1234.5678, specify a float or a double. 
• If you need to store integers between -32,768 and 32,767 only, specify the short 
integer data type, because it takes up only 2 bytes, whereas the long integer data 
type takes up 4. 
• If you need to store fractional numbers between -3.4E38 and 1.2E38 only, specify 
the float data type, because it takes up 4 bytes, whereas the double data type 
takes up 8. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
10
Text 
• A text field represents a series of alphanumeric symbols. This can include street 
names, attribute properties, or other textual description. 
• The characters used for text vary by language. 
• To allow text to more easily convert between languages, ArcGIS uses Unicode to 
encode characters. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
11
Date/Time 
• The date data type can store dates, times, or dates and times. 
• The default format in which the information is presented is: 
• mm/dd/yyyy hh:mm:ss and 
• a specification of AM or PM. 
• When you enter date fields in the table through ArcGIS, they are converted to this 
format. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
12
BLOB 
• A BLOB is data stored as a long sequence of binary numbers. 
• ArcGIS stores annotation and dimensions as BLOBs, and items such as images, 
multimedia, or bits of code can be stored in this type of field. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
13
Geometry 
• In ArcGIS, the geometry data type indicates 
the type of geometry: 
point, line, polygon, multipoint, or multi-patch 
• The field stored as geometry type is called SHAPE 
when created through ArcGIS. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
14
Precision and Scale 
Specifying the precision and scale allows one to restrict the range of values and 
number formats a field can accept, giving one a greater control. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
15
• Precision: 
• Defines the overall field length. 
• Scale: 
• Defines the decimal values. 
• These properties are associated with Numeric fields. 
• In all of the sub-fields of numbers (i.e. float, double etc), these two properties 
have to be defined with each of them. 
Friday, Institute of Geology, University of the Punjab November 21, 2014 
16
Friday, Institute of Geology, University of the Punjab November 21, 2014 
17 
Serial No. Data Type Precision Scale 
01. Short Integer 1-5 0 
02. Long Integer 6-10 0 
03. Double 1-6 
04. Float 7+ 0+
Friday, Institute of Geology, University of the Punjab November 21, 2014 
18 
Range Data type 
Precision (field 
length) 
Scale (decimal 
places) 
0 to 99 Short integer 2 0 
-99 to 99* Short integer 3 0 
0 to 32,767* Short integer 5 0 
32,768 to 99,999 Long integer 5 0 
0.001 to 0.999 Float 4 3 
1,000.00 to 9,999.99 Float 6 2 
-123,456.78 to 0* Double 9 2 
0 to 1,234.56789 Double 9 5 
* Negative numbers require additional precision to store the sign
Friday, Institute of Geology, University of the Punjab November 21, 2014 
19

Contenu connexe

Tendances

Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)
Ha Phuong
 
Dijkstra algorithm
Dijkstra algorithmDijkstra algorithm
Dijkstra algorithm
are you
 

Tendances (20)

Nearest neighbors
Nearest neighborsNearest neighbors
Nearest neighbors
 
Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)
 
Span sh.process steps
Span sh.process stepsSpan sh.process steps
Span sh.process steps
 
Grid based method & model based clustering method
Grid based method & model based clustering methodGrid based method & model based clustering method
Grid based method & model based clustering method
 
Au 2008 Gs100 1 P Getting Spatial With
Au 2008   Gs100 1 P Getting Spatial WithAu 2008   Gs100 1 P Getting Spatial With
Au 2008 Gs100 1 P Getting Spatial With
 
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
 
Web-based framework for online sketch-based image retrieval
Web-based framework for online sketch-based image retrievalWeb-based framework for online sketch-based image retrieval
Web-based framework for online sketch-based image retrieval
 
Large-Scale Geographically Weighted Regression on Spark
Large-Scale Geographically Weighted Regression on SparkLarge-Scale Geographically Weighted Regression on Spark
Large-Scale Geographically Weighted Regression on Spark
 
3.5 model based clustering
3.5 model based clustering3.5 model based clustering
3.5 model based clustering
 
Unsupervised Learning: Similarities and distance functions for IoT data
Unsupervised Learning: Similarities and distance functions for IoT dataUnsupervised Learning: Similarities and distance functions for IoT data
Unsupervised Learning: Similarities and distance functions for IoT data
 
Dijkstra s algorithm
Dijkstra s algorithmDijkstra s algorithm
Dijkstra s algorithm
 
Dijkstra algorithm
Dijkstra algorithmDijkstra algorithm
Dijkstra algorithm
 
Unsupervised Learning: Clustering
Unsupervised Learning: Clustering Unsupervised Learning: Clustering
Unsupervised Learning: Clustering
 
R language
R languageR language
R language
 
giasan.vn real-estate analytics: a Vietnam case study
giasan.vn real-estate analytics: a Vietnam case studygiasan.vn real-estate analytics: a Vietnam case study
giasan.vn real-estate analytics: a Vietnam case study
 
USING E-INFRASTRUCTURES FOR BIODIVERSITY CONSERVATION - Module 2
USING E-INFRASTRUCTURES FOR BIODIVERSITY CONSERVATION - Module 2USING E-INFRASTRUCTURES FOR BIODIVERSITY CONSERVATION - Module 2
USING E-INFRASTRUCTURES FOR BIODIVERSITY CONSERVATION - Module 2
 
GIS file types
GIS file typesGIS file types
GIS file types
 
Geolectioxydata
GeolectioxydataGeolectioxydata
Geolectioxydata
 
YCMOU_FYBCA_DS_Unit-7.ppt
YCMOU_FYBCA_DS_Unit-7.pptYCMOU_FYBCA_DS_Unit-7.ppt
YCMOU_FYBCA_DS_Unit-7.ppt
 
Google Earth Web Service as a Support for GIS Mapping in Geospatial Research ...
Google Earth Web Service as a Support for GIS Mapping in Geospatial Research ...Google Earth Web Service as a Support for GIS Mapping in Geospatial Research ...
Google Earth Web Service as a Support for GIS Mapping in Geospatial Research ...
 

En vedette

Unt 3 attributes, methods, relationships-1
Unt 3 attributes, methods, relationships-1Unt 3 attributes, methods, relationships-1
Unt 3 attributes, methods, relationships-1
gopal10scs185
 
association and causation
association and causationassociation and causation
association and causation
guestc43c63
 

En vedette (14)

Data Applied: Association
Data Applied: AssociationData Applied: Association
Data Applied: Association
 
How to Leverage Social Media For Successful Marketing and Membership Recruitm...
How to Leverage Social Media For Successful Marketing and Membership Recruitm...How to Leverage Social Media For Successful Marketing and Membership Recruitm...
How to Leverage Social Media For Successful Marketing and Membership Recruitm...
 
The Keynesian Association - Introduction
The Keynesian Association - Introduction The Keynesian Association - Introduction
The Keynesian Association - Introduction
 
Unt 3 attributes, methods, relationships-1
Unt 3 attributes, methods, relationships-1Unt 3 attributes, methods, relationships-1
Unt 3 attributes, methods, relationships-1
 
association and causation
association and causationassociation and causation
association and causation
 
Chi square test final
Chi square test finalChi square test final
Chi square test final
 
Chi square test
Chi square test Chi square test
Chi square test
 
Chi Square Worked Example
Chi Square Worked ExampleChi Square Worked Example
Chi Square Worked Example
 
Chi square test
Chi square testChi square test
Chi square test
 
The Chi-Squared Test
The Chi-Squared TestThe Chi-Squared Test
The Chi-Squared Test
 
Chi – square test
Chi – square testChi – square test
Chi – square test
 
Cadbury Dairy Milk Market Growth, Future Projections, BCG Matrix,PLC, Consume...
Cadbury Dairy Milk Market Growth, Future Projections, BCG Matrix,PLC, Consume...Cadbury Dairy Milk Market Growth, Future Projections, BCG Matrix,PLC, Consume...
Cadbury Dairy Milk Market Growth, Future Projections, BCG Matrix,PLC, Consume...
 
association of attributes
association of attributesassociation of attributes
association of attributes
 
Chi square test
Chi square testChi square test
Chi square test
 

Similaire à Lec_5_Intro to Attributes

Arc gis introduction-ppt
Arc gis introduction-pptArc gis introduction-ppt
Arc gis introduction-ppt
Ashok Peddi
 
INSPIRE data scope
INSPIRE data scopeINSPIRE data scope
INSPIRE data scope
inspireeu
 
DH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRM
DH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRMDH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRM
DH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRM
Frederic Kaplan
 

Similaire à Lec_5_Intro to Attributes (20)

Building a Spatial Database in PostgreSQL
Building a Spatial Database in PostgreSQLBuilding a Spatial Database in PostgreSQL
Building a Spatial Database in PostgreSQL
 
Arc gis introduction-ppt
Arc gis introduction-pptArc gis introduction-ppt
Arc gis introduction-ppt
 
Spatial Data in SQL Server
Spatial Data in SQL ServerSpatial Data in SQL Server
Spatial Data in SQL Server
 
L04.pdf
L04.pdfL04.pdf
L04.pdf
 
From Simple Features to Moving Features and Beyond? at OGC Member Meeting, Se...
From Simple Features to Moving Features and Beyond? at OGC Member Meeting, Se...From Simple Features to Moving Features and Beyond? at OGC Member Meeting, Se...
From Simple Features to Moving Features and Beyond? at OGC Member Meeting, Se...
 
GIS ANALYTICS-2011
GIS ANALYTICS-2011GIS ANALYTICS-2011
GIS ANALYTICS-2011
 
Geotagging Social Media Content with a Refined Language Modelling Approach
Geotagging Social Media Content with a Refined Language Modelling ApproachGeotagging Social Media Content with a Refined Language Modelling Approach
Geotagging Social Media Content with a Refined Language Modelling Approach
 
Geotagging Social Media Content with a Refined Language Modelling Approach
Geotagging Social Media Content with a Refined Language Modelling ApproachGeotagging Social Media Content with a Refined Language Modelling Approach
Geotagging Social Media Content with a Refined Language Modelling Approach
 
Apdm 101 Arc Gis Pipeline Data Model (1)
Apdm 101 Arc Gis Pipeline Data Model  (1)Apdm 101 Arc Gis Pipeline Data Model  (1)
Apdm 101 Arc Gis Pipeline Data Model (1)
 
Vector data model
Vector data model Vector data model
Vector data model
 
Vector data model
Vector data modelVector data model
Vector data model
 
Essentials of R
Essentials of REssentials of R
Essentials of R
 
Spatial Data in SQL Server
Spatial Data in SQL ServerSpatial Data in SQL Server
Spatial Data in SQL Server
 
INSPIRE data scope
INSPIRE data scopeINSPIRE data scope
INSPIRE data scope
 
Enhancing Parallel Coordinates with Curves
Enhancing Parallel Coordinates with CurvesEnhancing Parallel Coordinates with Curves
Enhancing Parallel Coordinates with Curves
 
Semantics-enhanced Geoscience Interoperability, Analytics, and Applications
Semantics-enhanced Geoscience Interoperability, Analytics, and ApplicationsSemantics-enhanced Geoscience Interoperability, Analytics, and Applications
Semantics-enhanced Geoscience Interoperability, Analytics, and Applications
 
Final ies
Final iesFinal ies
Final ies
 
Review presentation for Orientation 2014
Review presentation for Orientation 2014Review presentation for Orientation 2014
Review presentation for Orientation 2014
 
2017 PLSC Track: Using a Standard Version of ArcMap with External VRS Recieve...
2017 PLSC Track: Using a Standard Version of ArcMap with External VRS Recieve...2017 PLSC Track: Using a Standard Version of ArcMap with External VRS Recieve...
2017 PLSC Track: Using a Standard Version of ArcMap with External VRS Recieve...
 
DH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRM
DH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRMDH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRM
DH101 2013/2014 course 6 - Semantic coding, RDF, CIDOC-CRM
 

Plus de Atiqa khan

Plus de Atiqa khan (20)

2019_Wingdings Font - Times New Roman
2019_Wingdings Font  - Times New Roman2019_Wingdings Font  - Times New Roman
2019_Wingdings Font - Times New Roman
 
English Urdu Font in Windows 10 Keyboard
English Urdu Font in Windows 10 KeyboardEnglish Urdu Font in Windows 10 Keyboard
English Urdu Font in Windows 10 Keyboard
 
2018 Solutions to Sleep Screen
2018 Solutions to Sleep Screen2018 Solutions to Sleep Screen
2018 Solutions to Sleep Screen
 
2017 Thesis Check List Doc
2017 Thesis Check List Doc2017 Thesis Check List Doc
2017 Thesis Check List Doc
 
2017 Terms in GIS Town Planning
2017 Terms in GIS Town Planning2017 Terms in GIS Town Planning
2017 Terms in GIS Town Planning
 
2017 Pictorial Differences GIS & RS
2017 Pictorial Differences GIS & RS2017 Pictorial Differences GIS & RS
2017 Pictorial Differences GIS & RS
 
2017 Response Letter to a Journal
2017 Response Letter to a Journal2017 Response Letter to a Journal
2017 Response Letter to a Journal
 
2017 How to write Author Biography for Journal
2017 How to write Author Biography for Journal2017 How to write Author Biography for Journal
2017 How to write Author Biography for Journal
 
2017 Information about NUST Engineering
2017 Information about NUST Engineering2017 Information about NUST Engineering
2017 Information about NUST Engineering
 
2017 Glossary Of Cartographic Terms
2017 Glossary Of Cartographic Terms2017 Glossary Of Cartographic Terms
2017 Glossary Of Cartographic Terms
 
2017 Types Of Orbits Brief Explanation
2017 Types Of Orbits Brief Explanation2017 Types Of Orbits Brief Explanation
2017 Types Of Orbits Brief Explanation
 
2017 IST Undergraduates Admission Guide for Fall
2017 IST Undergraduates Admission Guide for Fall2017 IST Undergraduates Admission Guide for Fall
2017 IST Undergraduates Admission Guide for Fall
 
2017 Editable Thesis Checklist PDF
2017 Editable Thesis Checklist PDF2017 Editable Thesis Checklist PDF
2017 Editable Thesis Checklist PDF
 
2017 Basics of GIS
2017 Basics of GIS2017 Basics of GIS
2017 Basics of GIS
 
2016 Tenses in Research Paper
2016 Tenses in Research Paper2016 Tenses in Research Paper
2016 Tenses in Research Paper
 
Catalog of Earth Satellite Orbits_2017
Catalog of Earth Satellite Orbits_2017Catalog of Earth Satellite Orbits_2017
Catalog of Earth Satellite Orbits_2017
 
Physiology MBBS Part 2 UHS Paper-2016
Physiology MBBS Part 2 UHS Paper-2016Physiology MBBS Part 2 UHS Paper-2016
Physiology MBBS Part 2 UHS Paper-2016
 
Islamic Studies-Ethics-Pak Studies MBBS Part 2 UHS Paper-2016
Islamic Studies-Ethics-Pak Studies MBBS Part 2 UHS Paper-2016Islamic Studies-Ethics-Pak Studies MBBS Part 2 UHS Paper-2016
Islamic Studies-Ethics-Pak Studies MBBS Part 2 UHS Paper-2016
 
Bio Chemistry MBBS Part 2 UHS Paper-2016
Bio Chemistry MBBS Part 2 UHS Paper-2016Bio Chemistry MBBS Part 2 UHS Paper-2016
Bio Chemistry MBBS Part 2 UHS Paper-2016
 
Editable CD Cover Template_2016
Editable CD Cover Template_2016Editable CD Cover Template_2016
Editable CD Cover Template_2016
 

Dernier

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Dernier (20)

Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Philosophy of china and it's charactistics
Philosophy of china and it's charactisticsPhilosophy of china and it's charactistics
Philosophy of china and it's charactistics
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 

Lec_5_Intro to Attributes

  • 1. Introduction to Attributes Prof. Dr. Sajid Rashid Ahmad sajidpu@yahoo.com Atiqa Ijaz Khan _ Demonstrator atiqa_ss09@yahoo.com
  • 2. Intro to Attributes • “Non-spatial information about a geographic feature in a GIS, usually stored in a table and linked to the feature by a unique identifier.” (ESRI) • Attributes defines how information that specifies a particular feature will be displayed and labeled on a map. Friday, Institute of Geology, University of the Punjab November 21, 2014 2
  • 3. Examples • For vectors: • It is usually associated back-end information, like, name, population, length, width, etc. Friday, Institute of Geology, University of the Punjab November 21, 2014 3
  • 4. Examples • For raster: • Each cell associated with unique properties like rainfall, temperature, slope, etc. Friday, Institute of Geology, University of the Punjab November 21, 2014 4
  • 5. Who ‘ll define the image? Friday, Institute of Geology, University of the Punjab November 21, 2014 5
  • 6. Types of Attributes • Following are the types of attributes that are used in Arc GIS data fields: • Number • Text • Date/Time • BLOB (Binary Large Object) • GUIDs (Globally Unique Identifiers) • Geometry • Raster Friday, Institute of Geology, University of the Punjab November 21, 2014 6
  • 7. Friday, Institute of Geology, University of the Punjab November 21, 2014 7 ArcGIS data type Access data type Notes OBJECTID Long Integer OBJECTID is an AutoNumber field. SHORT INTEGER Integer LONG INTEGER Long Integer FLOAT Single DOUBLE Double TEXT Text DATE Date/Time BLOB OLE Object* GUID Number Replication ID, duplicates allowed GEOMETRY OLE Object* RASTER Long Integer *OLE: Object Linking and Embedding: That are created in other applications and then linked with database.
  • 8. Numbers Friday, Institute of Geology, University of the Punjab November 21, 2014 8 • One can store numbers in one of four numeric data types: • Short integer • Long integer • Float (single-precision floating-point numbers) • Double (double-precision floating-point numbers) • One has to chose between: • Whole numbers and fractional • Long or short integer • Double or float
  • 9. 9 Data type Storable range Size (Bytes) Applications Short integer -32,768 to 32,767 2 Numeric values without fractional values within specific range; coded values Long integer -2,147,483,648 to 2,147,483,647 4 Numeric values without fractional values within specific range Float (single-precision floating-point number) approximately -3.4E38 to 1.2E38 4 Numeric values with fractional values within specific range Double (double-precision floating-point number) approximately -2.2E308 to 1.8E308 8 Numeric values with fractional values within specific range Friday, Institute of Geology, University of the Punjab November 21, 2014
  • 10. • If you just need to store whole numbers, such as 12 or 12,345,678, specify a short or long integer. If you need to store fractional numbers that have decimal places, such as 0.23 or 1234.5678, specify a float or a double. • If you need to store integers between -32,768 and 32,767 only, specify the short integer data type, because it takes up only 2 bytes, whereas the long integer data type takes up 4. • If you need to store fractional numbers between -3.4E38 and 1.2E38 only, specify the float data type, because it takes up 4 bytes, whereas the double data type takes up 8. Friday, Institute of Geology, University of the Punjab November 21, 2014 10
  • 11. Text • A text field represents a series of alphanumeric symbols. This can include street names, attribute properties, or other textual description. • The characters used for text vary by language. • To allow text to more easily convert between languages, ArcGIS uses Unicode to encode characters. Friday, Institute of Geology, University of the Punjab November 21, 2014 11
  • 12. Date/Time • The date data type can store dates, times, or dates and times. • The default format in which the information is presented is: • mm/dd/yyyy hh:mm:ss and • a specification of AM or PM. • When you enter date fields in the table through ArcGIS, they are converted to this format. Friday, Institute of Geology, University of the Punjab November 21, 2014 12
  • 13. BLOB • A BLOB is data stored as a long sequence of binary numbers. • ArcGIS stores annotation and dimensions as BLOBs, and items such as images, multimedia, or bits of code can be stored in this type of field. Friday, Institute of Geology, University of the Punjab November 21, 2014 13
  • 14. Geometry • In ArcGIS, the geometry data type indicates the type of geometry: point, line, polygon, multipoint, or multi-patch • The field stored as geometry type is called SHAPE when created through ArcGIS. Friday, Institute of Geology, University of the Punjab November 21, 2014 14
  • 15. Precision and Scale Specifying the precision and scale allows one to restrict the range of values and number formats a field can accept, giving one a greater control. Friday, Institute of Geology, University of the Punjab November 21, 2014 15
  • 16. • Precision: • Defines the overall field length. • Scale: • Defines the decimal values. • These properties are associated with Numeric fields. • In all of the sub-fields of numbers (i.e. float, double etc), these two properties have to be defined with each of them. Friday, Institute of Geology, University of the Punjab November 21, 2014 16
  • 17. Friday, Institute of Geology, University of the Punjab November 21, 2014 17 Serial No. Data Type Precision Scale 01. Short Integer 1-5 0 02. Long Integer 6-10 0 03. Double 1-6 04. Float 7+ 0+
  • 18. Friday, Institute of Geology, University of the Punjab November 21, 2014 18 Range Data type Precision (field length) Scale (decimal places) 0 to 99 Short integer 2 0 -99 to 99* Short integer 3 0 0 to 32,767* Short integer 5 0 32,768 to 99,999 Long integer 5 0 0.001 to 0.999 Float 4 3 1,000.00 to 9,999.99 Float 6 2 -123,456.78 to 0* Double 9 2 0 to 1,234.56789 Double 9 5 * Negative numbers require additional precision to store the sign
  • 19. Friday, Institute of Geology, University of the Punjab November 21, 2014 19