SlideShare ist ein Scribd-Unternehmen logo
1 von 18
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Was ist angesagt?

Remote Sensing Platforms and Its types
Remote Sensing Platforms and Its typesRemote Sensing Platforms and Its types
Remote Sensing Platforms and Its typesSenthamizhan M
 
Characteristics of remote sensing satellites
Characteristics of remote sensing satellitesCharacteristics of remote sensing satellites
Characteristics of remote sensing satellitesVivek Srivastava
 
Principle of aerial photography and types.ppt
Principle of aerial photography and types.pptPrinciple of aerial photography and types.ppt
Principle of aerial photography and types.pptsrinivas2036
 
Sensors for remote sensing
Sensors for remote sensingSensors for remote sensing
Sensors for remote sensingMohsin Siddique
 
Spatial vs non spatial
Spatial vs non spatialSpatial vs non spatial
Spatial vs non spatialSumant Diwakar
 
Remote sensing-presentaion
Remote sensing-presentaionRemote sensing-presentaion
Remote sensing-presentaionMouna Guru
 
DATA in GIS and DATA Query
DATA in GIS and DATA QueryDATA in GIS and DATA Query
DATA in GIS and DATA QueryKU Leuven
 
Aerial photography.pptx
Aerial photography.pptxAerial photography.pptx
Aerial photography.pptxPramoda Raj
 
GPS & its integration with GIS & RS
GPS & its integration with GIS & RSGPS & its integration with GIS & RS
GPS & its integration with GIS & RSEhsanYousaf1
 
Image intrepretation
Image intrepretationImage intrepretation
Image intrepretationMeer Raashid
 
Geometry and types of aerial photographs
Geometry and types of aerial photographsGeometry and types of aerial photographs
Geometry and types of aerial photographsPooja Kumari
 
Energy interaction with earth surface features
Energy interaction with earth surface featuresEnergy interaction with earth surface features
Energy interaction with earth surface featuressuchismita11
 

Was ist angesagt? (20)

Remote Sensing Platforms and Its types
Remote Sensing Platforms and Its typesRemote Sensing Platforms and Its types
Remote Sensing Platforms and Its types
 
Characteristics of remote sensing satellites
Characteristics of remote sensing satellitesCharacteristics of remote sensing satellites
Characteristics of remote sensing satellites
 
Principle of aerial photography and types.ppt
Principle of aerial photography and types.pptPrinciple of aerial photography and types.ppt
Principle of aerial photography and types.ppt
 
GIS data analysis
GIS data analysisGIS data analysis
GIS data analysis
 
Sensors for remote sensing
Sensors for remote sensingSensors for remote sensing
Sensors for remote sensing
 
Spatial vs non spatial
Spatial vs non spatialSpatial vs non spatial
Spatial vs non spatial
 
GIS Map Projection
GIS Map ProjectionGIS Map Projection
GIS Map Projection
 
georeference
georeferencegeoreference
georeference
 
TIN IN GIS
TIN IN GISTIN IN GIS
TIN IN GIS
 
Remote sensing-presentaion
Remote sensing-presentaionRemote sensing-presentaion
Remote sensing-presentaion
 
DATA in GIS and DATA Query
DATA in GIS and DATA QueryDATA in GIS and DATA Query
DATA in GIS and DATA Query
 
Aerial photography.pptx
Aerial photography.pptxAerial photography.pptx
Aerial photography.pptx
 
GPS & its integration with GIS & RS
GPS & its integration with GIS & RSGPS & its integration with GIS & RS
GPS & its integration with GIS & RS
 
Image intrepretation
Image intrepretationImage intrepretation
Image intrepretation
 
Geometry and types of aerial photographs
Geometry and types of aerial photographsGeometry and types of aerial photographs
Geometry and types of aerial photographs
 
Raster data and Vector data
Raster data and Vector dataRaster data and Vector data
Raster data and Vector data
 
LISS
LISSLISS
LISS
 
Introduction to Remote Sensing
Introduction to Remote SensingIntroduction to Remote Sensing
Introduction to Remote Sensing
 
Energy interaction with earth surface features
Energy interaction with earth surface featuresEnergy interaction with earth surface features
Energy interaction with earth surface features
 
Relief displacement
Relief displacementRelief displacement
Relief displacement
 

Andere mochten auch

Andere mochten auch (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
 
Vector data model
Vector data model Vector data model
Vector data model
 
ppt spatial data
ppt spatial datappt spatial data
ppt spatial data
 
GIS data structure
GIS data structureGIS data structure
GIS data structure
 
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
 

Ähnlich wie Raster data model

introduction to geographical information system
introduction to geographical information systemintroduction to geographical information system
introduction to geographical information systemDrVenkateswarluGogan1
 
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 modelPramoda 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 surfaceeSAT Publishing House
 
R-Tree Implementation of Image Databases
R-Tree Implementation of Image DatabasesR-Tree Implementation of Image Databases
R-Tree Implementation of Image Databasessipij
 
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 librariesMazin Alwaaly
 
Remote Sensing2.ppt
Remote Sensing2.pptRemote Sensing2.ppt
Remote Sensing2.pptAbidHayat9
 
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 DATANadia 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
 
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 AlgorithmCSCJournals
 
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 systemsHarshavarthan24
 
Machine Vision on Embedded Hardware
Machine Vision on Embedded HardwareMachine Vision on Embedded Hardware
Machine Vision on Embedded HardwareJash Shah
 

Ähnlich wie 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
 
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
 

Mehr von 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 ModelSumant 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 NDVISumant 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
 

Mehr von 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
 

Kürzlich hochgeladen

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.docxRamakrishna Reddy Bijjam
 
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...pradhanghanshyam7136
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxAmita Gupta
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
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.MaryamAhmad92
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 

Kürzlich hochgeladen (20)

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
 
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...
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
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 Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 

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