Skip to main content

Raster Data Model


A raster data model represents geographic space as a grid of cells (called pixels).

Think of it like a chessboard covering the Earth.

  • Each square = cell / pixel

  • Each cell contains a value

  • That value represents information about that location

Example:

  • Elevation = 245 meters

  • Temperature = 32°C

  • Land use = Forest

The grid is arranged in:

  • Rows

  • Columns

This structure is called a matrix.

GRID Model (Cell-Based Matrix Model)

🔹 Concept

The GRID model is the most common raster structure used in GIS for spatial analysis.

It is mainly used for:

  • Continuous data (data that changes gradually)

  • Sometimes discrete/thematic data


🔹 Structure

  • A 2D matrix (rows × columns)

  • Each cell stores one numeric value

    • Integer (whole number)

    • Float (decimal number)


🔹 Key Terminologies

  • Cell Resolution → Size of each pixel (e.g., 30m × 30m)

  • Spatial Resolution → Level of detail

  • DEM (Digital Elevation Model) → Elevation grid

  • Raster Calculator → Tool for mathematical operations

  • Overlay Analysis → Combining multiple raster layers


🔹 Examples

Example 1: Elevation (DEM)

CellValue
A1250 m
A2260 m

Each pixel stores height above sea level.

Example 2: Temperature Map

Each pixel stores:

  • 28.5°C

  • 30.2°C


🔹 Where It Is Used

  • Slope calculation

  • Watershed analysis

  • Rainfall distribution

  • Land suitability analysis


🔹 Advantages

✔ Excellent for mathematical modeling
✔ Ideal for environmental modeling
✔ Easy for spatial analysis

🔹 Disadvantages

✖ Large storage if resolution is high
✖ Less precise for boundary mapping

 IMGRID / IMAGE Model (Imagery Raster)

🔹 Concept

The Image model stores satellite images, aerial photos, scanned images.

It looks like a grid, but:
👉 Each pixel can store multiple values (multi-band).


🔹 Structure

Each pixel contains:

  • One value (grayscale), OR

  • Three values (RGB), OR

  • Multiple spectral bands (Multispectral imagery)


🔹 Key Terminologies

  • Pixel Intensity

  • Spectral Band

  • Multispectral Image

  • RGB (Red, Green, Blue)

  • GeoTIFF

  • World File (.tfw) → Stores georeferencing info


🔹 Example

Example 1: RGB Image

Each pixel stores:

  • Red = 120

  • Green = 90

  • Blue = 60

These combine to produce a color.

Example 2: Sentinel-2 Image

Each pixel stores:

  • Band 2 (Blue)

  • Band 3 (Green)

  • Band 4 (Red)

  • Band 8 (NIR)

Used for:

  • NDVI calculation

  • Vegetation analysis

  • Urban mapping


🔹 Where It Is Used

  • Remote sensing

  • Image classification

  • Change detection

  • Land cover mapping


🔹 Advantages

✔ Good for visualization
✔ Supports multiple bands
✔ Essential for remote sensing

🔹 Disadvantages

✖ Large file size
✖ Requires preprocessing

MAP Model (Scanned Map Raster)

🔹 Concept

The MAP model represents scanned paper maps converted into digital raster form.

Usually:

  • Binary (0 or 1)

  • Black & White


🔹 Structure

  • High resolution scan (300–400 dpi)

  • Pixel values represent:

    • 1 = Feature present

    • 0 = Background


🔹 Key Terminologies

  • Binary Raster

  • Digitization

  • Vectorization

  • Cartographic Raster

  • Georeferencing


🔹 Example

A scanned topographic map:

  • Black lines = roads (1)

  • White background = empty (0)

Used for:

  • Digitizing boundaries

  • Extracting roads

  • Creating vector layers


🔹 Advantages

✔ Useful as background reference
✔ Helps in vectorization

🔹 Disadvantages

✖ Not suitable for analysis
✖ May contain scanning errors


FeatureGRID ModelIMAGE ModelMAP Model
Data TypeNumeric (continuous/discrete)Spectral valuesBinary / Categorical
PurposeSpatial analysisVisualization & Remote sensingBackground / Digitizing
Cell ValueElevation, rainfallRGB / spectral bands1 or 0
ExampleDEMSatellite imageScanned topo sheet

Raster Storage & Compression Methods

Because raster files can be large, special storage techniques are used.


1️⃣ Cell-by-Cell Storage

  • Stores every pixel value separately

  • Simple but large size

Example:
1 1 1 1 0 0 0 1 1


2️⃣ Run-Length Encoding (RLE)

Compresses repeated values.

Instead of:
1 1 1 1 0 0 0 1 1

Store as:
(4,1) (3,0) (2,1)

Saves space when neighboring pixels are similar.


3️⃣ Quadtree Model

Hierarchical division method.

  • Large uniform areas stored as one block

  • Divides only when values change

Example:
A forest area stored as one big block
Urban area divided into smaller blocks

Used in:

  • Large spatial datasets

  • Efficient storage systems


All three models are raster-based (cell structure), but:

  • GRID → Numerical analysis (DEM, rainfall, slope)

  • IMAGE → Remote sensing & spectral analysis

  • MAP → Scanned cartographic reference


Comments

Popular posts from this blog

Platforms in Remote Sensing

In remote sensing, a platform is the physical structure or vehicle that carries a sensor (camera, scanner, radar, etc.) to observe and collect information about the Earth's surface. Platforms are classified mainly by their altitude and mobility : Ground-Based Platforms Definition : Sensors mounted on the Earth's surface or very close to it. Examples : Tripods, towers, ground vehicles, handheld instruments. Applications : Calibration and validation of satellite data Detailed local studies (e.g., soil properties, vegetation health, air quality) Strength : High spatial detail but limited coverage. Airborne Platforms Definition : Sensors carried by aircraft, balloons, or drones (UAVs). Altitude : A few hundred meters to ~20 km. Examples : Airplanes with multispectral scanners UAVs with high-resolution cameras or LiDAR High-altitude balloons (stratospheric platforms) Applications : Local-to-regional mapping ...

History of GIS

1. 1832 - Early Spatial Analysis in Epidemiology:    - Charles Picquet creates a map in Paris detailing cholera deaths per 1,000 inhabitants.    - Utilizes halftone color gradients for visual representation. 2. 1854 - John Snow's Cholera Outbreak Analysis:    - Epidemiologist John Snow identifies cholera outbreak source in London using spatial analysis.    - Maps casualties' residences and nearby water sources to pinpoint the outbreak's origin. 3. Early 20th Century - Photozincography and Layered Mapping:    - Photozincography development allows maps to be split into layers for vegetation, water, etc.    - Introduction of layers, later a key feature in GIS, for separate printing plates. 4. Mid-20th Century - Computer Facilitation of Cartography:    - Waldo Tobler's 1959 publication details using computers for cartography.    - Computer hardware development, driven by nuclear weapon research, leads to broader mapping applications by early 1960s. 5. 1960 - Canada Geograph...

Model GIS object attribute entity

These concepts explain different ways of organizing, storing, and representing geographic information in a Geographic Information System (GIS) . They include database design models (ER model), data structure models (Object and Attribute models), and spatio-temporal representations that integrate location, entities, and time . Together, they help GIS manage both spatial data (where things are) and descriptive information (what they are and how they change over time) . 1. Object-Based Model (Object-Oriented Data Model) The Object-Based Model treats geographic features as independent objects that combine spatial geometry and descriptive attributes within a single structure. Core Concept: Each geographic feature (such as a building, road, or river ) is represented as a self-contained object that stores both: Geometry – location and shape (point, line, polygon) Attributes – descriptive properties (name, type, length, capacity) Unlike older georelational models , which stored spatial ...

Types of Remote Sensing

Remote Sensing means collecting information about the Earth's surface without touching it , usually using satellites, aircraft, or drones . There are different types of remote sensing based on the energy source and the wavelength region used. 🛰️ 1. Active Remote Sensing 📘 Concept: In active remote sensing , the sensor sends out its own energy (like a signal or pulse) to the Earth's surface. The sensor then records the reflected or backscattered energy that comes back from the surface. ⚙️ Key Terminology: Transmitter: sends energy (like a radar pulse or laser beam). Receiver: detects the energy that bounces back. Backscatter: energy that is reflected back to the sensor. 📊 Examples of Active Sensors: RADAR (Radio Detection and Ranging): Uses microwave signals to detect surface roughness, soil moisture, or ocean waves. LiDAR (Light Detection and Ranging): Uses laser light (near-infrared) to measure elevation, vegetation...

Government of India Initiatives for Water Management

The Government of India has undertaken several initiatives to address the challenges of water management, including water scarcity, groundwater depletion, pollution, and inefficient usage. These initiatives focus on water conservation, sustainable management, and ensuring equitable access to clean water. Below is a detailed explanation of the key initiatives: 1. Jal Shakti Abhiyan (JSA) Launched in 2019, JSA is a water conservation campaign implemented in mission mode. It focuses on five major interventions: Water conservation and rainwater harvesting Renovation of traditional and other water bodies/tanks Rejuvenation of small rivers and watersheds Intensive afforestation Water-efficient practices for agriculture Implemented in water-stressed districts with active community participation. Encourages local-level solutions like rooftop rainwater harvesting and check dams. 2. Atal Mission for Rejuvenation and Urban Transformation (AMRUT) Launched in 2015 to improve urban wa...