SlideShare a Scribd company logo
Raster Data Model
             (Chang’s Chapter 7)

Elements of the Raster Data Model
  Raster model divides the area into grid cells
  or pixel.
  Each grid cell is filled with the measured
  attribute values.
  It can represent points, lines and area (Figure
  7.1).
  Resolution depends on real world area
  represented by each grid cell.

                     AGS 722




                     AGS 722




                                                    1
Raster Data Model
The larger the area represented, the lower
the resolution of data.
Cells are identified by their positions in the
grid.
Raster data is geo-referenced by:
 • Real world coordinates of the reference
   point
 • Cell size in real world distance
 • Use the upper-left or lower-left corner of
   grid as the reference point.

                    AGS 722




                         IDRISI Metadata




                    AGS 722




                                                 2
Raster Data Model
 Storage requirement is high.
 Ex: If the area is 100 km x 100 km and cell
 size is 10 m. It needs 10,000 rows x 10,000
 columns or 100,000,000 pixels.
 If one byte is used per pixel, it requires 100
 MB storage




                    AGS 722




        Types of Raster Data

1. Satellite Imagery
     Remotely sensed satellite data are
     recorded in raster format.
     Spatial resolution varies:
    • 30 m. for Landsat 4 and 5 (use the
         Thematic Mapper scanner), and
         Landsat 7 (use Enhanced Thematic
         Mapper-Plus, ETM+ scanner).



                    AGS 722




                                                  3
• 20 m. for SPOT images (Multi-spectral
      sensor), and 10 m. for SPOT
      Panchromatic sensor).
    • 4 m. and 1 m. for IKONOS Multi-spectral
      and Panchromatic images respectively.
The pixel value in a satellite image represents
light energy reflected or emitted from the
Earth’s surface.




                   AGS 722




The measurement of light energy is based on
electromagnetic spectrum.
Panchromatic images are comprised of a
single spectral band.
Multi-spectral images have multiple bands.
 – Landsat TM has 7 band.
Land use, land cover and hydrography can
be classified from image processing system.
Satellite images can be diaplayed in black
and white or in color.


                   AGS 722




                                                  4
Landsat TM Bands




        AGS 722




Composite Color Images




        AGS 722




                         5
2. Digital Elevation Models (DEM)
  DEM consists of an array of uniformly spaced
  elevation data.
  DEM are produced from:
   – a stereoplotter and aerial photograph with
     overlapping areas.
   – Satellite imagery such as SPOT stereo
     model using special software.



                    AGS 722




3. Digital Orthophotos
  Prepared from aerial photograph or other
  remotely sensed data.
  Displacement caused by camera tilt and
  terrain relief has been removed.
  They are geo-referenced and can be
  registered with topographic and other maps.




                    AGS 722




                                                  6
Digital Orthophoto




                    AGS 722




4. Binary Scanned Files
  Scanned image containing values of 1 and 0.
  Maps to be digitized are typically scanned at
  300 or 400 dpi (dots per inch).
5. Graphic Files
  Maps, photographs and images can be stored
  as digital graphic files.
   – e.g. TIFF (Tagged Image File Format), GIF
     (Graphic Interchangeable Format), JPEG
     (Joint Photographic Exports Group), etc.
   – GeoTIFF is a geo-referenced version of
     TIFF format.

                    AGS 722




                                                  7
Raster Data Structure
 Refers to storage of raster data so that
 it can be processed by the computer.
Cell-by Cell Encoding
 A raster model is stored as a matrix.
 Its cell values are written into a file by
 row and column. (Figure 7.2)
 Ideal to store the cell values that
 change continuously, e.g.,DEM.
                   AGS 722




                   AGS 722




                                              8
For multi-spectral satellite image, each
cell has more than one value, data are
stored in either of the following formats.
 – The band interleaved by line (.bil):
   this method stores the 1st value of
   every row sequentially, followed by
   the second value of every row, and so
   on in one image.


                 AGS 722




 Multi-band Satellite Data Structure




        .bsq


                                .bil



                              Figure 7.x
                       .bip



                 AGS 722




                                             9
The Band Sequential (.bsq) method:
 stores values of each band sequentially
 in one image.
The Band Interleave by Pixel (.bip): each
 row of an image is stored sequentially,
 row 1 all bands, row 2 all bands, and so
 on.
               (See Figure 7.x)



                  AGS 722




   Multi-band Satellite Data Structure




          .bsq


                                 .bil



                               Figure 7.x
                        .bip



                  AGS 722




                                            10
Run-length Encoding
 Records the cells by row and by group
 Each group includes a cell value and the
 number of cells with that value.
 If all cells in a row contain the same value,
 only one group is recorded, hence save
 computer memory.
 See Figure 7.3.




                    AGS 722




                    AGS 722




                                                 11
Chain Code Method
 Represent the boundary of a region by using
 a series of cardinal directions and cells.
  – Ex: N1 means moving north by 1 cell,
        S4 means moving south by 4 cells.
 See Figure 7.4



                  AGS 722




                  AGS 722




                                               12
Block Code Method
 Uses square blocks to represent the region.
  – A unit square represents 1 cell.
  – 4-square block represents 2 x 2 cells
  – 9-square block represents 3 x 3 cells, and
    so on.
 Each square block is coded only with the
 location of a cell (lower left of the block), and
 the side length of the block.
 See Figure 7.5



                     AGS 722




                     AGS 722




                                                     13
Quad Tree Method
 Uses recursive decomposition to divide a grid
 into a hierarchy of quadrants. (Figure 7.6).
 A quadrant having cells with the same value
 will not be sub-divided, and it is stored as a
 leaf node.
 Leaf nodes are coded with the value
 homogeneous quadrant.
 A quadrant having different cell values will be
 subdivided until a quadrant at the finer level
 contains only one value.



                    AGS 722




                    AGS 722




                                                   14
This method is efficient for storing and
processing data.
Different raster GIS software use different
method of storing data.
 – IDRISI and GRASS use either cell-by-cell
   or run length encoding method.
 – SPANS uses a quad-tree data structure.




                  AGS 722




       Data Compression

Refers to the reduction of raster data
volumes.
Run length encoding method may reach 10:1
compression ratio.
TIFF and GIF files use lossless compression
which allows the original image to be
precisely reconstructed.




                  AGS 722




                                              15
Data Compression

JPEG files use lossy compression which can
achieve high compression ratios but can not
reconstruct the original image fully.
MrSid (Multi-resolution Seamless Image
Database) has capability of recalling image
data at different resolution or scales and also
can compress a large image.




                   AGS 722




  Projection of Raster Data
Projected raster data are based on rows and
columns but the rows and columns are
measured in real-world coordinates.
 – Ex:
    • Rows: 463, Columns: 318, Cell size: 30
      m
    • UTM coordinates at the lower left corner:
      499995, 5177175
    • UTM coordinates at the upper right
      corner: 509535, 5191065

                   AGS 722




                                                  16
• The cell in Row 1 and Column 1 at the
      upper left corner has UTM coordinates of
      499995, 5191035.

Data Conversion
 Conversion of vector to raster data is called
 rasterization.
 Conversion of raster to vector data is called
 vectorization. (Figure 7.8)
 Both require use of computer algorithms which
 most GIS software have.


                   AGS 722




                   AGS 722




                                                 17
Integration of Raster and Vector Data

Can take place in data display, data
processing, data conversion, or data analysis.
DEM are input data to extract topographic
features such as contour, drainage network,
watersheds, etc.
Most GIS packages allow simultaneous
display of raster and vector data.
Data conversion must be performed first if the
analysis of both raster and vector data is
required.

                  AGS 722




                                                 18

More Related Content

What's hot

Image interpretation keys & image resolution
Image interpretation keys & image resolutionImage interpretation keys & image resolution
Image interpretation keys & image resolution
Pramoda Raj
 
Data base management system
Data base management systemData base management system
Data base management system
Pramoda Raj
 
GIS data analysis
GIS data analysisGIS data analysis
GIS data analysis
Arindam Sarkar
 
Vector data model
Vector data model Vector data model
Vector data model
Pramoda Raj
 
Introduction to GIS
Introduction to GISIntroduction to GIS
Introduction to GIS
KU Leuven
 
Spatial analysis and modeling
Spatial analysis and modelingSpatial analysis and modeling
Spatial analysis and modelingTolasa_F
 
DATA in GIS and DATA Query
DATA in GIS and DATA QueryDATA in GIS and DATA Query
DATA in GIS and DATA Query
KU Leuven
 
Types of GIS Data
Types of GIS DataTypes of GIS Data
Types of GIS Data
Preeti Prajapati
 
Geographical Information System (GIS)
Geographical Information System (GIS)Geographical Information System (GIS)
Geographical Information System (GIS)
Malla Reddy University
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
Dhaval Jalalpara
 
Digital elevation model in GIS
Digital elevation model in GISDigital elevation model in GIS
Digital elevation model in GIS
Prof. A.Balasubramanian
 
GIS data structure
GIS data structureGIS data structure
GIS data structure
Thana Chirapiwat
 
Data models in geographical information system(GIS)
Data models in geographical information system(GIS)Data models in geographical information system(GIS)
Data models in geographical information system(GIS)
Pramoda Raj
 
Basic of gis concept and theories
Basic of gis concept and theoriesBasic of gis concept and theories
Basic of gis concept and theories
Mohsin Siddique
 
Gis functions
Gis functionsGis functions
Gis functions
Shah Naseer
 
Three dimensional (3D) GIS
Three dimensional (3D) GISThree dimensional (3D) GIS
Three dimensional (3D) GIS
Wellington Gwavava
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
Satish Taji
 
Application of GIS (Geographical information system)
Application of GIS (Geographical information system)Application of GIS (Geographical information system)
Application of GIS (Geographical information system)
Fayaz Ahamed A P
 
Georeferencing
GeoreferencingGeoreferencing
Georeferencing
Reham Maher El-Safarini
 
Lecture-8-The-GIS-Database-Part-1.ppt
Lecture-8-The-GIS-Database-Part-1.pptLecture-8-The-GIS-Database-Part-1.ppt
Lecture-8-The-GIS-Database-Part-1.ppt
Prabin Pandit
 

What's hot (20)

Image interpretation keys & image resolution
Image interpretation keys & image resolutionImage interpretation keys & image resolution
Image interpretation keys & image resolution
 
Data base management system
Data base management systemData base management system
Data base management system
 
GIS data analysis
GIS data analysisGIS data analysis
GIS data analysis
 
Vector data model
Vector data model Vector data model
Vector data model
 
Introduction to GIS
Introduction to GISIntroduction to GIS
Introduction to GIS
 
Spatial analysis and modeling
Spatial analysis and modelingSpatial analysis and modeling
Spatial analysis and modeling
 
DATA in GIS and DATA Query
DATA in GIS and DATA QueryDATA in GIS and DATA Query
DATA in GIS and DATA Query
 
Types of GIS Data
Types of GIS DataTypes of GIS Data
Types of GIS Data
 
Geographical Information System (GIS)
Geographical Information System (GIS)Geographical Information System (GIS)
Geographical Information System (GIS)
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
 
Digital elevation model in GIS
Digital elevation model in GISDigital elevation model in GIS
Digital elevation model in GIS
 
GIS data structure
GIS data structureGIS data structure
GIS data structure
 
Data models in geographical information system(GIS)
Data models in geographical information system(GIS)Data models in geographical information system(GIS)
Data models in geographical information system(GIS)
 
Basic of gis concept and theories
Basic of gis concept and theoriesBasic of gis concept and theories
Basic of gis concept and theories
 
Gis functions
Gis functionsGis functions
Gis functions
 
Three dimensional (3D) GIS
Three dimensional (3D) GISThree dimensional (3D) GIS
Three dimensional (3D) GIS
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
 
Application of GIS (Geographical information system)
Application of GIS (Geographical information system)Application of GIS (Geographical information system)
Application of GIS (Geographical information system)
 
Georeferencing
GeoreferencingGeoreferencing
Georeferencing
 
Lecture-8-The-GIS-Database-Part-1.ppt
Lecture-8-The-GIS-Database-Part-1.pptLecture-8-The-GIS-Database-Part-1.ppt
Lecture-8-The-GIS-Database-Part-1.ppt
 

Viewers also liked

functions of GIS
functions of GISfunctions of GIS
functions of GIS
Shawana Khan
 
raster data model
raster data modelraster data model
raster data model
Riya Gupta
 
Bb geodatabase
Bb geodatabaseBb geodatabase
Bb geodatabase
Davinsworth09
 
Spatial Data Model
Spatial Data ModelSpatial Data Model
Spatial Data Model
Kaium Chowdhury
 
Tours les jours2
Tours les jours2Tours les jours2
Tours les jours2chanpinqi
 
Chemical bonding
Chemical bondingChemical bonding
Chemical bonding
Pramoda Raj
 
datamodel_vector
datamodel_vectordatamodel_vector
datamodel_vector
Riya Gupta
 
Rastar Capabilities
Rastar CapabilitiesRastar Capabilities
Rastar Capabilities
bsattree
 
Spatial databases
Spatial databasesSpatial databases
Spatial databases
Seraphic Nazir
 
GIS fundamentals - vector
GIS fundamentals - vectorGIS fundamentals - vector
GIS fundamentals - vector
Hans van der Kwast
 
GIS fundamentals - raster
GIS fundamentals - rasterGIS fundamentals - raster
GIS fundamentals - raster
Hans van der Kwast
 
ppt spatial data
ppt spatial datappt spatial data
ppt spatial data
Rahul Kumar
 
Applications of gis
Applications of gisApplications of gis
Applications of gis
Pramoda Raj
 
Network topology.ppt
Network topology.pptNetwork topology.ppt
Network topology.ppt
Siddique Ibrahim
 
Gis (geographic information system)
Gis (geographic information system)Gis (geographic information system)
Gis (geographic information system)
Saad Bare
 
What Is GIS?
What Is GIS?What Is GIS?
What Is GIS?
Allan Laframboise
 

Viewers also liked (20)

About rastar games, v1.8
About rastar games, v1.8About rastar games, v1.8
About rastar games, v1.8
 
functions of GIS
functions of GISfunctions of GIS
functions of GIS
 
raster data model
raster data modelraster data model
raster data model
 
Bb geodatabase
Bb geodatabaseBb geodatabase
Bb geodatabase
 
GIS & Raster
GIS & RasterGIS & Raster
GIS & Raster
 
Spatial Data Model
Spatial Data ModelSpatial Data Model
Spatial Data Model
 
Tours les jours2
Tours les jours2Tours les jours2
Tours les jours2
 
Chemical bonding
Chemical bondingChemical bonding
Chemical bonding
 
datamodel_vector
datamodel_vectordatamodel_vector
datamodel_vector
 
Rastar Capabilities
Rastar CapabilitiesRastar Capabilities
Rastar Capabilities
 
Spatial databases
Spatial databasesSpatial databases
Spatial databases
 
GIS fundamentals - vector
GIS fundamentals - vectorGIS fundamentals - vector
GIS fundamentals - vector
 
GIS fundamentals - raster
GIS fundamentals - rasterGIS fundamentals - raster
GIS fundamentals - raster
 
ppt spatial data
ppt spatial datappt spatial data
ppt spatial data
 
Vectors and Rasters
Vectors and RastersVectors and Rasters
Vectors and Rasters
 
Applications of gis
Applications of gisApplications of gis
Applications of gis
 
Network topology.ppt
Network topology.pptNetwork topology.ppt
Network topology.ppt
 
Raster
RasterRaster
Raster
 
Gis (geographic information system)
Gis (geographic information system)Gis (geographic information system)
Gis (geographic information system)
 
What Is GIS?
What Is GIS?What Is GIS?
What Is GIS?
 

Similar to Raster data model

introduction to geographical information system
introduction to geographical information systemintroduction to geographical information system
introduction to geographical information system
DrVenkateswarluGogan1
 
33286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-133286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-1Hisham Ibnuqaiyim
 
Raster data model
Raster data modelRaster data model
Raster data model
Pramoda Raj
 
3 d video streaming for virtual exploration of planet surface
3 d video streaming for virtual exploration of planet surface3 d video streaming for virtual exploration of planet surface
3 d video streaming for virtual exploration of planet surface
eSAT Publishing House
 
R-Tree Implementation of Image Databases
R-Tree Implementation of Image DatabasesR-Tree Implementation of Image Databases
R-Tree Implementation of Image Databases
sipij
 
Multimedia content based retrieval in digital libraries
Multimedia content based retrieval in digital librariesMultimedia content based retrieval in digital libraries
Multimedia content based retrieval in digital libraries
Mazin Alwaaly
 
Remote Sensing2.ppt
Remote Sensing2.pptRemote Sensing2.ppt
Remote Sensing2.ppt
AbidHayat9
 
Ec36783787
Ec36783787Ec36783787
Ec36783787
IJERA Editor
 
THE NATURE AND SOURCE OF GEOGRAPHIC DATA
THE NATURE AND SOURCE OF GEOGRAPHIC DATATHE NATURE AND SOURCE OF GEOGRAPHIC DATA
THE NATURE AND SOURCE OF GEOGRAPHIC DATA
Nadia Aziz
 
A modified pso based graph cut algorithm for the selection of optimal regular...
A modified pso based graph cut algorithm for the selection of optimal regular...A modified pso based graph cut algorithm for the selection of optimal regular...
A modified pso based graph cut algorithm for the selection of optimal regular...IAEME Publication
 
Geographical information system
Geographical information systemGeographical information system
Geographical information system
North Orissa University
 
regions
regionsregions
regions
mjbahmani
 
Target Detection by Fuzzy Gustafson-Kessel Algorithm
Target Detection by Fuzzy Gustafson-Kessel AlgorithmTarget Detection by Fuzzy Gustafson-Kessel Algorithm
Target Detection by Fuzzy Gustafson-Kessel Algorithm
CSCJournals
 
GIS - Unit 3-1.pptx for geographical information systems
GIS - Unit 3-1.pptx for geographical information systemsGIS - Unit 3-1.pptx for geographical information systems
GIS - Unit 3-1.pptx for geographical information systems
Harshavarthan24
 
Gis unit 3
Gis   unit 3Gis   unit 3
Gis unit 3
sridevi5983
 
Machine Vision on Embedded Hardware
Machine Vision on Embedded HardwareMachine Vision on Embedded Hardware
Machine Vision on Embedded Hardware
Jash Shah
 
Gis Concepts 2/5
Gis Concepts 2/5Gis Concepts 2/5
Gis Concepts 2/5
CIER Facultad de Agronomía
 

Similar to Raster data model (20)

introduction to geographical information system
introduction to geographical information systemintroduction to geographical information system
introduction to geographical information system
 
33286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-133286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-1
 
Raster data model
Raster data modelRaster data model
Raster data model
 
3 d video streaming for virtual exploration of planet surface
3 d video streaming for virtual exploration of planet surface3 d video streaming for virtual exploration of planet surface
3 d video streaming for virtual exploration of planet surface
 
A0280105
A0280105A0280105
A0280105
 
R-Tree Implementation of Image Databases
R-Tree Implementation of Image DatabasesR-Tree Implementation of Image Databases
R-Tree Implementation of Image Databases
 
Multimedia content based retrieval in digital libraries
Multimedia content based retrieval in digital librariesMultimedia content based retrieval in digital libraries
Multimedia content based retrieval in digital libraries
 
I07015261
I07015261I07015261
I07015261
 
Remote Sensing2.ppt
Remote Sensing2.pptRemote Sensing2.ppt
Remote Sensing2.ppt
 
Ec36783787
Ec36783787Ec36783787
Ec36783787
 
THE NATURE AND SOURCE OF GEOGRAPHIC DATA
THE NATURE AND SOURCE OF GEOGRAPHIC DATATHE NATURE AND SOURCE OF GEOGRAPHIC DATA
THE NATURE AND SOURCE OF GEOGRAPHIC DATA
 
A modified pso based graph cut algorithm for the selection of optimal regular...
A modified pso based graph cut algorithm for the selection of optimal regular...A modified pso based graph cut algorithm for the selection of optimal regular...
A modified pso based graph cut algorithm for the selection of optimal regular...
 
Geographical information system
Geographical information systemGeographical information system
Geographical information system
 
regions
regionsregions
regions
 
Vf sift
Vf siftVf sift
Vf sift
 
Target Detection by Fuzzy Gustafson-Kessel Algorithm
Target Detection by Fuzzy Gustafson-Kessel AlgorithmTarget Detection by Fuzzy Gustafson-Kessel Algorithm
Target Detection by Fuzzy Gustafson-Kessel Algorithm
 
GIS - Unit 3-1.pptx for geographical information systems
GIS - Unit 3-1.pptx for geographical information systemsGIS - Unit 3-1.pptx for geographical information systems
GIS - Unit 3-1.pptx for geographical information systems
 
Gis unit 3
Gis   unit 3Gis   unit 3
Gis unit 3
 
Machine Vision on Embedded Hardware
Machine Vision on Embedded HardwareMachine Vision on Embedded Hardware
Machine Vision on Embedded Hardware
 
Gis Concepts 2/5
Gis Concepts 2/5Gis Concepts 2/5
Gis Concepts 2/5
 

More from Sumant Diwakar

Hydrologic Assessment in a Middle Narmada Basin, India using SWAT Model
Hydrologic Assessment in a Middle Narmada Basin, India using SWAT ModelHydrologic Assessment in a Middle Narmada Basin, India using SWAT Model
Hydrologic Assessment in a Middle Narmada Basin, India using SWAT Model
Sumant Diwakar
 
C Programming
C ProgrammingC Programming
C Programming
Sumant Diwakar
 
C Programming
C ProgrammingC Programming
C Programming
Sumant Diwakar
 
Soil moisture
Soil moistureSoil moisture
Soil moisture
Sumant Diwakar
 
REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT
REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT
REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT
Sumant Diwakar
 
Relation between Ground-based Soil Moisture and Satellite Image-based NDVI
Relation between Ground-based Soil Moisture and Satellite Image-based NDVIRelation between Ground-based Soil Moisture and Satellite Image-based NDVI
Relation between Ground-based Soil Moisture and Satellite Image-based NDVI
Sumant Diwakar
 
Solar irradiation & spectral signature
Solar irradiation & spectral signatureSolar irradiation & spectral signature
Solar irradiation & spectral signatureSumant Diwakar
 
Optical remote sensing
Optical remote sensingOptical remote sensing
Optical remote sensingSumant Diwakar
 
Interaction of EMR with atmosphere and earth surface
Interaction of EMR with atmosphere and earth surfaceInteraction of EMR with atmosphere and earth surface
Interaction of EMR with atmosphere and earth surfaceSumant Diwakar
 
History of remote sensing
History of remote sensingHistory of remote sensing
History of remote sensingSumant Diwakar
 
Electromagnetic radiation
Electromagnetic radiationElectromagnetic radiation
Electromagnetic radiationSumant Diwakar
 
Differential gps (dgps) 09 04-12
Differential gps (dgps) 09 04-12Differential gps (dgps) 09 04-12
Differential gps (dgps) 09 04-12Sumant Diwakar
 
Principle of photogrammetry
Principle of photogrammetryPrinciple of photogrammetry
Principle of photogrammetrySumant Diwakar
 
Automatic digital terrain modelling
Automatic digital terrain modellingAutomatic digital terrain modelling
Automatic digital terrain modellingSumant Diwakar
 
Aerial photography abraham thomas
Aerial photography abraham thomasAerial photography abraham thomas
Aerial photography abraham thomasSumant Diwakar
 
Aerial photographs and their interpretation
Aerial photographs and their interpretationAerial photographs and their interpretation
Aerial photographs and their interpretationSumant Diwakar
 

More from Sumant Diwakar (20)

Hydrologic Assessment in a Middle Narmada Basin, India using SWAT Model
Hydrologic Assessment in a Middle Narmada Basin, India using SWAT ModelHydrologic Assessment in a Middle Narmada Basin, India using SWAT Model
Hydrologic Assessment in a Middle Narmada Basin, India using SWAT Model
 
C Programming
C ProgrammingC Programming
C Programming
 
C Programming
C ProgrammingC Programming
C Programming
 
Soil moisture
Soil moistureSoil moisture
Soil moisture
 
REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT
REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT
REMOTE SENSING & GIS APPLICATIONS IN WATERSHED MANAGEMENT
 
Relation between Ground-based Soil Moisture and Satellite Image-based NDVI
Relation between Ground-based Soil Moisture and Satellite Image-based NDVIRelation between Ground-based Soil Moisture and Satellite Image-based NDVI
Relation between Ground-based Soil Moisture and Satellite Image-based NDVI
 
Solar irradiation & spectral signature
Solar irradiation & spectral signatureSolar irradiation & spectral signature
Solar irradiation & spectral signature
 
Optical remote sensing
Optical remote sensingOptical remote sensing
Optical remote sensing
 
Interaction of EMR with atmosphere and earth surface
Interaction of EMR with atmosphere and earth surfaceInteraction of EMR with atmosphere and earth surface
Interaction of EMR with atmosphere and earth surface
 
History of remote sensing
History of remote sensingHistory of remote sensing
History of remote sensing
 
Electromagnetic radiation
Electromagnetic radiationElectromagnetic radiation
Electromagnetic radiation
 
Map projection
Map projectionMap projection
Map projection
 
Differential gps (dgps) 09 04-12
Differential gps (dgps) 09 04-12Differential gps (dgps) 09 04-12
Differential gps (dgps) 09 04-12
 
Principle of photogrammetry
Principle of photogrammetryPrinciple of photogrammetry
Principle of photogrammetry
 
Digital orthophoto
Digital orthophotoDigital orthophoto
Digital orthophoto
 
Automatic digital terrain modelling
Automatic digital terrain modellingAutomatic digital terrain modelling
Automatic digital terrain modelling
 
Aerial photography abraham thomas
Aerial photography abraham thomasAerial photography abraham thomas
Aerial photography abraham thomas
 
Aerial photographs and their interpretation
Aerial photographs and their interpretationAerial photographs and their interpretation
Aerial photographs and their interpretation
 
Wide field sensor
Wide field sensorWide field sensor
Wide field sensor
 
Thematic mapper
Thematic mapperThematic mapper
Thematic mapper
 

Recently uploaded

The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 

Recently uploaded (20)

The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 

Raster data model

  • 1. Raster Data Model (Chang’s Chapter 7) Elements of the Raster Data Model Raster model divides the area into grid cells or pixel. Each grid cell is filled with the measured attribute values. It can represent points, lines and area (Figure 7.1). Resolution depends on real world area represented by each grid cell. AGS 722 AGS 722 1
  • 2. Raster Data Model The larger the area represented, the lower the resolution of data. Cells are identified by their positions in the grid. Raster data is geo-referenced by: • Real world coordinates of the reference point • Cell size in real world distance • Use the upper-left or lower-left corner of grid as the reference point. AGS 722 IDRISI Metadata AGS 722 2
  • 3. Raster Data Model Storage requirement is high. Ex: If the area is 100 km x 100 km and cell size is 10 m. It needs 10,000 rows x 10,000 columns or 100,000,000 pixels. If one byte is used per pixel, it requires 100 MB storage AGS 722 Types of Raster Data 1. Satellite Imagery Remotely sensed satellite data are recorded in raster format. Spatial resolution varies: • 30 m. for Landsat 4 and 5 (use the Thematic Mapper scanner), and Landsat 7 (use Enhanced Thematic Mapper-Plus, ETM+ scanner). AGS 722 3
  • 4. • 20 m. for SPOT images (Multi-spectral sensor), and 10 m. for SPOT Panchromatic sensor). • 4 m. and 1 m. for IKONOS Multi-spectral and Panchromatic images respectively. The pixel value in a satellite image represents light energy reflected or emitted from the Earth’s surface. AGS 722 The measurement of light energy is based on electromagnetic spectrum. Panchromatic images are comprised of a single spectral band. Multi-spectral images have multiple bands. – Landsat TM has 7 band. Land use, land cover and hydrography can be classified from image processing system. Satellite images can be diaplayed in black and white or in color. AGS 722 4
  • 5. Landsat TM Bands AGS 722 Composite Color Images AGS 722 5
  • 6. 2. Digital Elevation Models (DEM) DEM consists of an array of uniformly spaced elevation data. DEM are produced from: – a stereoplotter and aerial photograph with overlapping areas. – Satellite imagery such as SPOT stereo model using special software. AGS 722 3. Digital Orthophotos Prepared from aerial photograph or other remotely sensed data. Displacement caused by camera tilt and terrain relief has been removed. They are geo-referenced and can be registered with topographic and other maps. AGS 722 6
  • 7. Digital Orthophoto AGS 722 4. Binary Scanned Files Scanned image containing values of 1 and 0. Maps to be digitized are typically scanned at 300 or 400 dpi (dots per inch). 5. Graphic Files Maps, photographs and images can be stored as digital graphic files. – e.g. TIFF (Tagged Image File Format), GIF (Graphic Interchangeable Format), JPEG (Joint Photographic Exports Group), etc. – GeoTIFF is a geo-referenced version of TIFF format. AGS 722 7
  • 8. Raster Data Structure Refers to storage of raster data so that it can be processed by the computer. Cell-by Cell Encoding A raster model is stored as a matrix. Its cell values are written into a file by row and column. (Figure 7.2) Ideal to store the cell values that change continuously, e.g.,DEM. AGS 722 AGS 722 8
  • 9. For multi-spectral satellite image, each cell has more than one value, data are stored in either of the following formats. – The band interleaved by line (.bil): this method stores the 1st value of every row sequentially, followed by the second value of every row, and so on in one image. AGS 722 Multi-band Satellite Data Structure .bsq .bil Figure 7.x .bip AGS 722 9
  • 10. The Band Sequential (.bsq) method: stores values of each band sequentially in one image. The Band Interleave by Pixel (.bip): each row of an image is stored sequentially, row 1 all bands, row 2 all bands, and so on. (See Figure 7.x) AGS 722 Multi-band Satellite Data Structure .bsq .bil Figure 7.x .bip AGS 722 10
  • 11. Run-length Encoding Records the cells by row and by group Each group includes a cell value and the number of cells with that value. If all cells in a row contain the same value, only one group is recorded, hence save computer memory. See Figure 7.3. AGS 722 AGS 722 11
  • 12. Chain Code Method Represent the boundary of a region by using a series of cardinal directions and cells. – Ex: N1 means moving north by 1 cell, S4 means moving south by 4 cells. See Figure 7.4 AGS 722 AGS 722 12
  • 13. Block Code Method Uses square blocks to represent the region. – A unit square represents 1 cell. – 4-square block represents 2 x 2 cells – 9-square block represents 3 x 3 cells, and so on. Each square block is coded only with the location of a cell (lower left of the block), and the side length of the block. See Figure 7.5 AGS 722 AGS 722 13
  • 14. Quad Tree Method Uses recursive decomposition to divide a grid into a hierarchy of quadrants. (Figure 7.6). A quadrant having cells with the same value will not be sub-divided, and it is stored as a leaf node. Leaf nodes are coded with the value homogeneous quadrant. A quadrant having different cell values will be subdivided until a quadrant at the finer level contains only one value. AGS 722 AGS 722 14
  • 15. This method is efficient for storing and processing data. Different raster GIS software use different method of storing data. – IDRISI and GRASS use either cell-by-cell or run length encoding method. – SPANS uses a quad-tree data structure. AGS 722 Data Compression Refers to the reduction of raster data volumes. Run length encoding method may reach 10:1 compression ratio. TIFF and GIF files use lossless compression which allows the original image to be precisely reconstructed. AGS 722 15
  • 16. Data Compression JPEG files use lossy compression which can achieve high compression ratios but can not reconstruct the original image fully. MrSid (Multi-resolution Seamless Image Database) has capability of recalling image data at different resolution or scales and also can compress a large image. AGS 722 Projection of Raster Data Projected raster data are based on rows and columns but the rows and columns are measured in real-world coordinates. – Ex: • Rows: 463, Columns: 318, Cell size: 30 m • UTM coordinates at the lower left corner: 499995, 5177175 • UTM coordinates at the upper right corner: 509535, 5191065 AGS 722 16
  • 17. • The cell in Row 1 and Column 1 at the upper left corner has UTM coordinates of 499995, 5191035. Data Conversion Conversion of vector to raster data is called rasterization. Conversion of raster to vector data is called vectorization. (Figure 7.8) Both require use of computer algorithms which most GIS software have. AGS 722 AGS 722 17
  • 18. Integration of Raster and Vector Data Can take place in data display, data processing, data conversion, or data analysis. DEM are input data to extract topographic features such as contour, drainage network, watersheds, etc. Most GIS packages allow simultaneous display of raster and vector data. Data conversion must be performed first if the analysis of both raster and vector data is required. AGS 722 18