SlideShare a Scribd company logo
introduction to
geographical information system
DR. VENKATESWARLU GOGANA
Topics
1. Introduction to GIS
2. Components of GIS
3. Types of Data
o Spatial Data
o Non-Spatial Data
4. GIS Operations
5. Coordinate Systems
6. Datum
7. Map Projections
8. Raster Data Compression Techniques
9. GIS Software
10. Free GIS Data Resources
Data vs Information
 Data, by itself, generally differs from information.
 Data is of little use unless it is transformed into information.
 Information is an answer to a question based on raw data.
 We transform data into information through the use of an Information System.
What is GIS?
A Geographic Information System
(GIS) is a computer system for
capturing, storing, checking, and
displaying data related to positions
on Earth's surface.
Geographic Information Systems (GIS)
Geography – The study of where features are located on the Earth’s surface.
Geographic coordinate systems
latitude
longitude
- Represent exact positions on the Earth
- 42.3216, -71.089118 (lat. long. for Boston)
Georeferencing / Geocoding – The process of assigning geographic
coordinates to features to represent their location.
introduction to geographical information system
GIS Functions
• Capture: Paper maps, digital data, coordinates, GPS, all together = gis data
• Store: Vector (database consisting of points, lines and polygons) or raster
formats (grid cells or pixels)
• Query: Identifying specific features, identify features based on conditions
(counties with population greater than 500,000)
• Analyze: Proximity (parcels 100 feet from the road), overlay, network analysis
(how linear features are connected
• Display: Maps, graphs, Reports
• Output: Paper maps, image
Data Capture
Data Storage
• Common Manipulation
• Query
• Reclassification
• Map Projection changes
• Spatial Analysis
• Buffering
• Overlay
• Network
Spatial Data Manipulation and Analysis
Data Display and Output
introduction to geographical information system
Components of GIS
Types of Data
1. Attribute data:
Says what a feature is
Ex.: statistics, text, images, sound, etc.
2. Spatial data:
Says where the feature is
 Vector data: Discrete data
o Points
o Lines
o Polygons (zones or areas)
 Raster data: Continuous data
Representation of Spatial Elements
Raster Data
Vector Data
Entity Representations
Raster vs Vector
Data Model
A geographic data
model is a structure for
organizing geospatial
data so that it can be
easily stored and
retrieved.
Geographic coordinates
Tabular attributes
File-based Data Models
 Coverages
 Developed for workstation Arc/Info ~ 1980
 Complex structure, proprietary format
 Attributes in Info tables
 Shapefiles
 Developed for ArcView ~ 1993
 Simpler structure in public domain
 Attributes in dBase (.dbf) tables
Geographic coordinates and attributes
are stored in separate but linked files
Arc
Info
Geodatabase model
 Stores geographic coordinates as one
attribute (shape) in a relational database
table
 Uses MS Access for “Personal
Geodatabase” (single user)
 Uses Oracle, SQL Server, MySQL or other
commercial relational databases for
“Enterprise Geodatabases” (many
simultaneous users)
Shape
File Formats
Shape File
KML
GeoJSON
GeoJSON
introduction to geographical information system
introduction to geographical information system
introduction to geographical information system
introduction to geographical information system
introduction to geographical information system
Raster Data - Compression
Techniques
Raster data is comprised of grid cells. Vector data is comprised of vertices and paths.
These are the two primary spatial data types in GIS.
Raster Data:
Accuracy depends on cell size. Cell size must be small enough to capture the required detail. And as
resolution increases, the size of the cell decreases. But this comes at a cost for speed of processing and data
storage.
Raster storage in its raw state is inefficient because it is normally stores values row-by-row from the top left
corner.
The way to improve raster size efficiency is through image compression. And there are several ways to use
GIS compression to reduce file size and still maintain quality of data.
Full raster coding (no-compression)
By convention, raster data is normally stored row by row from the top left
corner.
Types of Compression
Techniques
Types of Compression Techniques:
1. Run Length Encoding – Grouping Rows of Data
2. Block Coding – Grouping Blocks of Data
3. Chain Coding – Defining the Exterior Boundary
4. Quadtree Encoding – Subdividing Data Into Quarters
1. Run Length Encoding – Grouping Rows of Data
Run length encoding stores cells on a row-by-row basis. Instead of recording each
individual cell’s values, run length encoding groups cell values by row.
Take this line of data:
AAAAAABBBBCCCCCCCCC
It can be rendered as:
6A4B9C
This image encoding method reduces data volumes because each line is recorded
more efficiently. Even though the same information is being held, values that are the
same are stored as a string.
In this example, the first row is blank and is stored as (0,8). This means there are 8
cells and they are all zeros. In the second row, there are 4 consecutive zeros so it
gets a value of (0,4). After this, we have three consecutive cells with the value 1 so
it gets a value of (1,3). This continues until it reaches the bottom-right cell.
introduction to geographical information system
2. Block Coding – Grouping Blocks of Data
The block coding raster storage technique assigns areas that are blocks to reduce
redundancy.
The block coding raster image compression method subdivides an entire raster
image into hierarchical blocks. It’s an extension of the run length encoding
technique, but extends it to two dimensions.
In the example above:
Instead of storing 64 grid cells, all it takes is just 7 blocks. Using block coding, it
requires one 3×3 block, two 2×2 blocks and four 1×1 cell blocks to encode this raster
image.
In this block coding example, the top-left corner is used as a reference for each block.
Block coding (lossless)
3. Chain Coding – Defining the Exterior Boundary
Chain coding defines the outer boundary using relative positions from a start point.
The sequence of the exterior is stored where the endpoint finishes at the start point.
During the encoding, the direction is stored as an integer. However, in this example
we use cardinal directions for simplicity. For example, the value 0 is north and 1 is
east.
During the encoding, the direction is stored as an integer. However, in this example
we use cardinal directions for simplicity. For example, the value 0 is north and 1 is
east.
In the example, we start at position (5,2). From here we define the border using
cardinal directions and number of movements. We move east 3 positions until we hit
the edge. At this location, we move south 4 positions. This process continues until the
end point hits the start point.
Note: Only for the purpose of this exercise, we used north, east, south and west as
4. Quadtree Encoding – Subdividing Data Into Quarters
Quadtrees are raster data structures based on the successive reduction of
homogeneous cells. It recursively subdivides a raster image into quarters. The
subdivision process continues until each cell is classed.
It reduces raster storage requirements. It also is
dependent on the complexity of the feature and
the resolution of the smallest grid cell.
In the example, the top-left and bottom-right 8×8
grids do not need to be subdivided further
because they are homogeneous. The top-right
8×8 grid is subdivided into three 4×4 grid. The
remaining 4×4 grid is separated into 4 individual
classes.
Quandtree coding (lossless)
introduction to geographical information system
GIS Software
GIS Software:
Google Earth Pro – To View and Download Historical Satellite Image Data
Two Versions:
Web & Desktop
1. QGIS – Open Source
2. ArcGIS – ESRI’s Product - Commercial Software
3. AutoCAD Map – Autodesk’s Product (No Support for Analysis, But useful for Data Creation)
- Commercial
4. Global Mapper – Free and Commercial
5. MapInfo - Commercial
6. Small World - Commercial
7. Bentley Map - Commercial
Free GIS Data Resources
Free GIS Data Sources:
ISRO-NRSC Bhuvan Website - https://bhuvan.nrsc.gov.in (for Indian Satellite Data)
USGS - https://www.usgs.gov (for World Satellite Data)
Google Earth Engine - https://earthengine.google.com
(For World Satellite Data Processing & Analysis using JavaScript / Python script without Downloading Data
and without GIS Software)
Free GIS Data Viewers:
Google Earth (Web Version) - https://earth.google.com/web
Google Earth Pro (Desktop Version) - https://www.google.com/earth/versions/#download-pro
(To view and download Historical Image Data)
Reference
Textbook of Remote Sensing and
Geographical Information Systems
M. Anji Reddy
BS Publications

More Related Content

PPTX
Geographical Information System (GIS)
PPTX
Geographical Information System Power Point Presentation
PDF
33286 gis%20 lecture%20six-1
PPTX
Raster data and Vector data
PPTX
Unit 4 Data Input and Analysis.pptx
PDF
Four data models in GIS
PPTX
Data Input and Analysis.pptx engineering
PPT
GIS presentation
Geographical Information System (GIS)
Geographical Information System Power Point Presentation
33286 gis%20 lecture%20six-1
Raster data and Vector data
Unit 4 Data Input and Analysis.pptx
Four data models in GIS
Data Input and Analysis.pptx engineering
GIS presentation

Similar to introduction to geographical information system (20)

PPTX
rasterdatamodel.........................
PPT
GIS tool input data structures and types
PDF
RASTER DATA MODEL, Digitial Elevation Models
PPTX
Raster data model
PPTX
Raster data model
PPTX
Data models in geographical information system(GIS)
PPTX
Geological information system updated.pptx
PDF
geographic information system(gis) (1).pdf
PPTX
Geographic information system
PPTX
GIS Geographical Information System
PPT
Geographical Information System
PPTX
Spatial data for GIS
PDF
28d37b_L3 GIS.pdf
PPT
GIS_Data_models.ppt Dr. Rapanwad Sunil Ramrao
PPT
Intro to GIS and Remote Sensing
PPT
GIS Data Types
PDF
Materi Geodatabase Management - Fellowship 2022.pdf
PPTX
Geographic information system (gis)
PDF
Gis basic
PPTX
Geographic Information System for Bachelor in Agriculture Engineering
rasterdatamodel.........................
GIS tool input data structures and types
RASTER DATA MODEL, Digitial Elevation Models
Raster data model
Raster data model
Data models in geographical information system(GIS)
Geological information system updated.pptx
geographic information system(gis) (1).pdf
Geographic information system
GIS Geographical Information System
Geographical Information System
Spatial data for GIS
28d37b_L3 GIS.pdf
GIS_Data_models.ppt Dr. Rapanwad Sunil Ramrao
Intro to GIS and Remote Sensing
GIS Data Types
Materi Geodatabase Management - Fellowship 2022.pdf
Geographic information system (gis)
Gis basic
Geographic Information System for Bachelor in Agriculture Engineering
Ad

More from DrVenkateswarluGogan1 (20)

DOCX
EG NOTES.docx
DOCX
EG QUESTION BANK.docx
PPTX
PHOTOGRAMMETRY.pptx
PPTX
MODERN SURVEYING TECHNIQUES.pptx
PDF
Modern surveying instruments.pdf
PDF
Project Evaluation Techniques by Dr.Venkateswarlu Gogana.pdf
PDF
HOUSING AND COMMUNITY PLANNING.pdf
PDF
Slum improvement act.pdf
PDF
Regional Plan for National Capital Region Dr venkateswarlu gogana.pdf
PDF
National Housing Board Dr Venkateswarlu Gogana.pdf
PDF
municipal act by Dr venkateswarlu gogana.pdf
PDF
Land Acquisitoin Act 1894 Dr Venkateswarlu gogana.pdf
PDF
Land acquisition Dr gogana venkateswarlu.pdf
PPTX
Land acquisition 1894 and larr 2013.pptx
PPTX
Environmental Legislations.pptx
DOCX
EXOGENOUS HAZARDS docx
DOCX
ENDOGENOUS HAZARDS EARTHQUAKES .docx
DOCX
Environmental Hazards and Environmental Disaster and Its Types.docx
PPTX
HOW GIS USED IN TENDERING
EG NOTES.docx
EG QUESTION BANK.docx
PHOTOGRAMMETRY.pptx
MODERN SURVEYING TECHNIQUES.pptx
Modern surveying instruments.pdf
Project Evaluation Techniques by Dr.Venkateswarlu Gogana.pdf
HOUSING AND COMMUNITY PLANNING.pdf
Slum improvement act.pdf
Regional Plan for National Capital Region Dr venkateswarlu gogana.pdf
National Housing Board Dr Venkateswarlu Gogana.pdf
municipal act by Dr venkateswarlu gogana.pdf
Land Acquisitoin Act 1894 Dr Venkateswarlu gogana.pdf
Land acquisition Dr gogana venkateswarlu.pdf
Land acquisition 1894 and larr 2013.pptx
Environmental Legislations.pptx
EXOGENOUS HAZARDS docx
ENDOGENOUS HAZARDS EARTHQUAKES .docx
Environmental Hazards and Environmental Disaster and Its Types.docx
HOW GIS USED IN TENDERING
Ad

Recently uploaded (20)

PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
Geodesy 1.pptx...............................................
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPTX
UNIT 4 Total Quality Management .pptx
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
Construction Project Organization Group 2.pptx
PPTX
Sustainable Sites - Green Building Construction
PPTX
Welding lecture in detail for understanding
PDF
composite construction of structures.pdf
PDF
Digital Logic Computer Design lecture notes
DOCX
573137875-Attendance-Management-System-original
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PDF
PPT on Performance Review to get promotions
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Geodesy 1.pptx...............................................
CYBER-CRIMES AND SECURITY A guide to understanding
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
UNIT 4 Total Quality Management .pptx
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
Construction Project Organization Group 2.pptx
Sustainable Sites - Green Building Construction
Welding lecture in detail for understanding
composite construction of structures.pdf
Digital Logic Computer Design lecture notes
573137875-Attendance-Management-System-original
CH1 Production IntroductoryConcepts.pptx
Model Code of Practice - Construction Work - 21102022 .pdf
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Operating System & Kernel Study Guide-1 - converted.pdf
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPT on Performance Review to get promotions

introduction to geographical information system

  • 1. introduction to geographical information system DR. VENKATESWARLU GOGANA
  • 2. Topics 1. Introduction to GIS 2. Components of GIS 3. Types of Data o Spatial Data o Non-Spatial Data 4. GIS Operations 5. Coordinate Systems 6. Datum 7. Map Projections 8. Raster Data Compression Techniques 9. GIS Software 10. Free GIS Data Resources
  • 3. Data vs Information  Data, by itself, generally differs from information.  Data is of little use unless it is transformed into information.  Information is an answer to a question based on raw data.  We transform data into information through the use of an Information System.
  • 4. What is GIS? A Geographic Information System (GIS) is a computer system for capturing, storing, checking, and displaying data related to positions on Earth's surface.
  • 5. Geographic Information Systems (GIS) Geography – The study of where features are located on the Earth’s surface. Geographic coordinate systems latitude longitude - Represent exact positions on the Earth - 42.3216, -71.089118 (lat. long. for Boston) Georeferencing / Geocoding – The process of assigning geographic coordinates to features to represent their location.
  • 7. GIS Functions • Capture: Paper maps, digital data, coordinates, GPS, all together = gis data • Store: Vector (database consisting of points, lines and polygons) or raster formats (grid cells or pixels) • Query: Identifying specific features, identify features based on conditions (counties with population greater than 500,000) • Analyze: Proximity (parcels 100 feet from the road), overlay, network analysis (how linear features are connected • Display: Maps, graphs, Reports • Output: Paper maps, image
  • 10. • Common Manipulation • Query • Reclassification • Map Projection changes • Spatial Analysis • Buffering • Overlay • Network Spatial Data Manipulation and Analysis
  • 14. Types of Data 1. Attribute data: Says what a feature is Ex.: statistics, text, images, sound, etc. 2. Spatial data: Says where the feature is  Vector data: Discrete data o Points o Lines o Polygons (zones or areas)  Raster data: Continuous data
  • 20. Data Model A geographic data model is a structure for organizing geospatial data so that it can be easily stored and retrieved. Geographic coordinates Tabular attributes
  • 21. File-based Data Models  Coverages  Developed for workstation Arc/Info ~ 1980  Complex structure, proprietary format  Attributes in Info tables  Shapefiles  Developed for ArcView ~ 1993  Simpler structure in public domain  Attributes in dBase (.dbf) tables Geographic coordinates and attributes are stored in separate but linked files Arc Info
  • 22. Geodatabase model  Stores geographic coordinates as one attribute (shape) in a relational database table  Uses MS Access for “Personal Geodatabase” (single user)  Uses Oracle, SQL Server, MySQL or other commercial relational databases for “Enterprise Geodatabases” (many simultaneous users) Shape
  • 25. KML
  • 33. Raster Data - Compression Techniques Raster data is comprised of grid cells. Vector data is comprised of vertices and paths. These are the two primary spatial data types in GIS. Raster Data: Accuracy depends on cell size. Cell size must be small enough to capture the required detail. And as resolution increases, the size of the cell decreases. But this comes at a cost for speed of processing and data storage. Raster storage in its raw state is inefficient because it is normally stores values row-by-row from the top left corner. The way to improve raster size efficiency is through image compression. And there are several ways to use GIS compression to reduce file size and still maintain quality of data.
  • 34. Full raster coding (no-compression) By convention, raster data is normally stored row by row from the top left corner.
  • 35. Types of Compression Techniques Types of Compression Techniques: 1. Run Length Encoding – Grouping Rows of Data 2. Block Coding – Grouping Blocks of Data 3. Chain Coding – Defining the Exterior Boundary 4. Quadtree Encoding – Subdividing Data Into Quarters
  • 36. 1. Run Length Encoding – Grouping Rows of Data Run length encoding stores cells on a row-by-row basis. Instead of recording each individual cell’s values, run length encoding groups cell values by row. Take this line of data: AAAAAABBBBCCCCCCCCC It can be rendered as: 6A4B9C This image encoding method reduces data volumes because each line is recorded more efficiently. Even though the same information is being held, values that are the same are stored as a string.
  • 37. In this example, the first row is blank and is stored as (0,8). This means there are 8 cells and they are all zeros. In the second row, there are 4 consecutive zeros so it gets a value of (0,4). After this, we have three consecutive cells with the value 1 so it gets a value of (1,3). This continues until it reaches the bottom-right cell.
  • 39. 2. Block Coding – Grouping Blocks of Data The block coding raster storage technique assigns areas that are blocks to reduce redundancy. The block coding raster image compression method subdivides an entire raster image into hierarchical blocks. It’s an extension of the run length encoding technique, but extends it to two dimensions.
  • 40. In the example above: Instead of storing 64 grid cells, all it takes is just 7 blocks. Using block coding, it requires one 3×3 block, two 2×2 blocks and four 1×1 cell blocks to encode this raster image. In this block coding example, the top-left corner is used as a reference for each block.
  • 42. 3. Chain Coding – Defining the Exterior Boundary Chain coding defines the outer boundary using relative positions from a start point. The sequence of the exterior is stored where the endpoint finishes at the start point. During the encoding, the direction is stored as an integer. However, in this example we use cardinal directions for simplicity. For example, the value 0 is north and 1 is east.
  • 43. During the encoding, the direction is stored as an integer. However, in this example we use cardinal directions for simplicity. For example, the value 0 is north and 1 is east. In the example, we start at position (5,2). From here we define the border using cardinal directions and number of movements. We move east 3 positions until we hit the edge. At this location, we move south 4 positions. This process continues until the end point hits the start point. Note: Only for the purpose of this exercise, we used north, east, south and west as
  • 44. 4. Quadtree Encoding – Subdividing Data Into Quarters Quadtrees are raster data structures based on the successive reduction of homogeneous cells. It recursively subdivides a raster image into quarters. The subdivision process continues until each cell is classed. It reduces raster storage requirements. It also is dependent on the complexity of the feature and the resolution of the smallest grid cell. In the example, the top-left and bottom-right 8×8 grids do not need to be subdivided further because they are homogeneous. The top-right 8×8 grid is subdivided into three 4×4 grid. The remaining 4×4 grid is separated into 4 individual classes.
  • 47. GIS Software GIS Software: Google Earth Pro – To View and Download Historical Satellite Image Data Two Versions: Web & Desktop 1. QGIS – Open Source 2. ArcGIS – ESRI’s Product - Commercial Software 3. AutoCAD Map – Autodesk’s Product (No Support for Analysis, But useful for Data Creation) - Commercial 4. Global Mapper – Free and Commercial 5. MapInfo - Commercial 6. Small World - Commercial 7. Bentley Map - Commercial
  • 48. Free GIS Data Resources Free GIS Data Sources: ISRO-NRSC Bhuvan Website - https://bhuvan.nrsc.gov.in (for Indian Satellite Data) USGS - https://www.usgs.gov (for World Satellite Data) Google Earth Engine - https://earthengine.google.com (For World Satellite Data Processing & Analysis using JavaScript / Python script without Downloading Data and without GIS Software) Free GIS Data Viewers: Google Earth (Web Version) - https://earth.google.com/web Google Earth Pro (Desktop Version) - https://www.google.com/earth/versions/#download-pro (To view and download Historical Image Data)
  • 49. Reference Textbook of Remote Sensing and Geographical Information Systems M. Anji Reddy BS Publications