SlideShare uma empresa Scribd logo
1 de 18
Baixar para ler offline
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

Mais conteúdo relacionado

Mais procurados

Lecture+12+topology+2013 (3)
Lecture+12+topology+2013 (3)Lecture+12+topology+2013 (3)
Lecture+12+topology+2013 (3)
Mei Chi Lo
 
Spatial vs non spatial
Spatial vs non spatialSpatial vs non spatial
Spatial vs non spatial
Sumant Diwakar
 

Mais procurados (20)

Raster data analysis
Raster data analysisRaster data analysis
Raster data analysis
 
Vector data model
Vector data modelVector data model
Vector data model
 
Image interpretation keys & image resolution
Image interpretation keys & image resolutionImage interpretation keys & image resolution
Image interpretation keys & image resolution
 
Spatial interpolation techniques
Spatial interpolation techniquesSpatial interpolation techniques
Spatial interpolation techniques
 
Digital Elevation Model (DEM)
Digital Elevation Model (DEM)Digital Elevation Model (DEM)
Digital Elevation Model (DEM)
 
Geographic information system (gis)
Geographic information system (gis)Geographic information system (gis)
Geographic information system (gis)
 
GIS data structure
GIS data structureGIS data structure
GIS data structure
 
DATA in GIS and DATA Query
DATA in GIS and DATA QueryDATA in GIS and DATA Query
DATA in GIS and DATA Query
 
GIS PPT
GIS PPTGIS PPT
GIS PPT
 
Lecture+12+topology+2013 (3)
Lecture+12+topology+2013 (3)Lecture+12+topology+2013 (3)
Lecture+12+topology+2013 (3)
 
Spatial vs non spatial
Spatial vs non spatialSpatial vs non spatial
Spatial vs non spatial
 
Spatial Data Model
Spatial Data ModelSpatial Data Model
Spatial Data Model
 
Four data models in GIS
Four data models in GISFour data models in GIS
Four data models in GIS
 
Geo referencing by Mashhood Arif
Geo referencing by Mashhood ArifGeo referencing by Mashhood Arif
Geo referencing by Mashhood Arif
 
Pre processing
Pre processingPre processing
Pre processing
 
Application of GIS (Geographical information system)
Application of GIS (Geographical information system)Application of GIS (Geographical information system)
Application of GIS (Geographical information system)
 
Raster data model
Raster data modelRaster data model
Raster data model
 
Components of gis
Components of gisComponents of gis
Components of gis
 
Vector and Raster Data data model
Vector and Raster Data data modelVector and Raster Data data model
Vector and Raster Data data model
 
GIS data analysis
GIS data analysisGIS data analysis
GIS data analysis
 

Destaque

Tours les jours2
Tours les jours2Tours les jours2
Tours les jours2
chanpinqi
 

Destaque (20)

About rastar games, v1.8
About rastar games, v1.8About rastar games, v1.8
About rastar games, v1.8
 
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
 
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
 
Vector data model
Vector data model Vector data model
Vector data model
 
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?
 
Intro to GIS and Remote Sensing
Intro to GIS and Remote SensingIntro to GIS and Remote Sensing
Intro to GIS and Remote Sensing
 

Semelhante a Raster data model

33286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-133286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-1
Hisham Ibnuqaiyim
 
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
 

Semelhante a Raster data model (20)

introduction to geographical information system
introduction to geographical information systemintroduction to geographical information system
introduction to geographical information system
 
Geographical Information System (GIS)
Geographical Information System (GIS)Geographical Information System (GIS)
Geographical Information System (GIS)
 
33286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-133286 gis%20 lecture%20six-1
33286 gis%20 lecture%20six-1
 
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
 

Mais de Sumant Diwakar

Solar irradiation & spectral signature
Solar irradiation & spectral signatureSolar irradiation & spectral signature
Solar irradiation & spectral signature
Sumant Diwakar
 
Optical remote sensing
Optical remote sensingOptical remote sensing
Optical remote sensing
Sumant 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 surface
Sumant Diwakar
 
History of remote sensing
History of remote sensingHistory of remote sensing
History of remote sensing
Sumant Diwakar
 
Electromagnetic radiation
Electromagnetic radiationElectromagnetic radiation
Electromagnetic radiation
Sumant Diwakar
 
Differential gps (dgps) 09 04-12
Differential gps (dgps) 09 04-12Differential gps (dgps) 09 04-12
Differential gps (dgps) 09 04-12
Sumant Diwakar
 
Principle of photogrammetry
Principle of photogrammetryPrinciple of photogrammetry
Principle of photogrammetry
Sumant Diwakar
 
Automatic digital terrain modelling
Automatic digital terrain modellingAutomatic digital terrain modelling
Automatic digital terrain modelling
Sumant Diwakar
 
Aerial photography abraham thomas
Aerial photography abraham thomasAerial photography abraham thomas
Aerial photography abraham thomas
Sumant Diwakar
 
Aerial photographs and their interpretation
Aerial photographs and their interpretationAerial photographs and their interpretation
Aerial photographs and their interpretation
Sumant Diwakar
 

Mais de 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 terrain model
Digital terrain modelDigital terrain model
Digital terrain model
 
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
 

Último

Último (20)

HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
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
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
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)
 
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
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
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Ă...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
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
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 

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