IKONOS: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
m (→‎Availability (Sample Data): added link to sample IKONOS data provided by ISPRS)
m (→‎Calculate Planetary Reflectance: r.mapcalc based example conversion commands)
Line 53: Line 53:


=== Calculate Planetary Reflectance ===
=== Calculate Planetary Reflectance ===
Converting a Blue Band (Digital Numbers) in to Spectral at-sensor Radiance:
{{cmd|r.mapcalc}} <source lang="bash" enclose=none>"Blue_Radiance = ( (10000 * IKONOS_Blue_Band_DN) / (728 * 71.3) )"</source>
Converting the in-Blue spectral band at-sensor Radiance in to Planerary Reflectance:
{{cmd|r.mapcalc}} <source lang="bash" enclose=none>"Blue_Reflectance = ( ${PI} * Blue_Radiance * ${ESD}^2 ) / ( ${!BAND_Esun} * cos(${SZA}) )"</source>


''ToAdd''
''ToAdd''

Revision as of 19:43, 26 July 2013

[This page is under construction]

IKONOS is a commercial earth observation satellite. Details about the sensor are provided at Digital Globe's IKONOS Data Sheet

Availability (Sample Data)

Pre-Processing Overview

Typically, multispectral satellite data are converted into physical quantities such as Radiance or Reflectance before they are subjected in multispectral analysis techniques (image interpretation, band arithmetic, vegetation indices, matrix transformations, etc.). The latter can be differentiated in Top of Atmosphere Reflectance (ToAR) which does not account for atmospheric effects (absorption or scattering) and in Top of Canopy Reflectance (ToCR) which introduces a "correction" for atmospheric effects.


In order to derive Reflectance values, likewise as with remotely sensed data acquired by other sensors, IKONOS raw image digital numbers (DNs) need to be converted to at-sensor spectral Radiance values. At-sensor spectral Radiance values are an important input for the equation to derive Reflectance values. Note, Spectal Radiance is the measure of the quantity of radiation that hits the sensor and typically expressed in Failed to parse (syntax error): {\displaystyle W * sr^−1 * m^−2 * nm^−1} , that is watts per unit source area, per unit solid angle, and per unit wavelength.


Converting DNs to at-sensor Radiance can be done by using the following equation:


Converting to Top of Atmosphere Reflectance, also referred to as Planetary Reflectance, can be done by using the following equation:

Failed to parse (syntax error): {\displaystyle \rho_p = \frac{\pi * L\lambda * d^2}{ESUN\lambda * cos(θ_S)}}

where:

  • - Unitless Planetary Reflectance
  • - mathematical constant (3.14159265358)
  • spectral Radiance at the sensor's aperture, from equation... ToADD
  • - Earth-Sun distance in astronomical units, interpolated values
  • - Mean solar exoatmospheric irradiance(s) (W/m2/μm), interpolated values
  • Failed to parse (syntax error): {\displaystyle cos(θ_s)} - Solar zenith angle, from the image acquisition's metadata

Modules overview

ToAdd

Pre-Processing

ToAdd

File Formats & Metadata

ToAdd

Importing data

ToAdd

Calculate Planetary Reflectance

Converting a Blue Band (Digital Numbers) in to Spectral at-sensor Radiance:

r.mapcalc "Blue_Radiance = ( (10000 * IKONOS_Blue_Band_DN) / (728 * 71.3) )"

Converting the in-Blue spectral band at-sensor Radiance in to Planerary Reflectance:

r.mapcalc "Blue_Reflectance = ( ${PI} * Blue_Radiance * ${ESD}^2 ) / ( ${!BAND_Esun} * cos(${SZA}) )"

ToAdd

Atmospheric correction

See Atmospheric correction

Color composites

ToAdd

Pan Sharpening

ToAdd

IKONOS Image classification

See Image classification

References / Sources

See also


ToAdd