<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://grasswiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%E2%9A%A0%EF%B8%8FAnnekatrien</id>
	<title>GRASS-Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://grasswiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%E2%9A%A0%EF%B8%8FAnnekatrien"/>
	<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/wiki/Special:Contributions/%E2%9A%A0%EF%B8%8FAnnekatrien"/>
	<updated>2026-05-26T04:13:26Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=Atmospheric_correction&amp;diff=8624</id>
		<title>Atmospheric correction</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=Atmospheric_correction&amp;diff=8624"/>
		<updated>2009-04-11T09:19:02Z</updated>

		<summary type="html">&lt;p&gt;⚠️Annekatrien: Tutorial on atmospheric correction of Landsat images in the North Carolina dataset&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Aim of this tutorial:'''&lt;br /&gt;
&lt;br /&gt;
* Transforming a Landsat ETM+ image from DN values to radiance values&lt;br /&gt;
* Conducting an atmospheric correction of a Landsat image using the i.atcorr module in Grass GIS 6.3.0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Required elements:'''&lt;br /&gt;
&lt;br /&gt;
* Grass 6.3.0 or higher&lt;br /&gt;
* North Carolina sample dataset: http://grass.itc.it/download/data.php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After downloading of the North Carolina dataset, it must be unzipped into your GIS database. When starting Grass GIS, select this GIS database, open the ‘nc_spm_08’ dataset as LOCATION, and ‘PERMANENT’ as MAPSET. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Calculating radiance values =&lt;br /&gt;
&lt;br /&gt;
This mapset contains, amongst others, a Landsat ETM+ image of 24th of May 2002. Every pixel of this image contains a DN or grey value. In order to be able to make calculations with satellite imagery, or compare values amongst different sensors, these values have to be converted to radiances or reflectances. The formulas to do this conversion are described here for Landsat images.&lt;br /&gt;
The conversion from DN values to top-of-atmosphere radiances is done as follows:&lt;br /&gt;
&lt;br /&gt;
     '''Lλ = ((LMAXλ - LMINλ)/(QCALMAX-QCALMIN)) * (QCAL-QCALMIN) + LMINλ'''&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
&lt;br /&gt;
* Lλ = Spectral Radiance at the sensor's aperture in watts/(meter squared * ster * μm)&lt;br /&gt;
* QCAL = the quantized calibrated pixel value in DN&lt;br /&gt;
* LMINλ = the spectral radiance that is scaled to QCALMIN in watts/(meter squared * ster * μm)&lt;br /&gt;
* LMAXλ = the spectral radiance that is scaled to QCALMAX in watts/(meter squared * ster * μm)&lt;br /&gt;
* QCALMIN = the minimum quantized calibrated pixel value (corresponding to LMINλ) in DN &lt;br /&gt;
* QCALMAX = the maximum quantized calibrated pixel value (corresponding to LMAXλ) in DN =255&lt;br /&gt;
* Lλ is the apparent radiance as seen by the satellite sensor. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
LMINλ and LMAXλ are the radiances related to the minimal and maximal DN value, and are reported in the metadata file for each image, or in the table 1. High gain or low gain is also reported in the metadata file of each Landsat image. The minimal DN value (QCALMIN) is 1 for Landsat ETM+ images (1), and the maximal DN value (QCALMAX) is 255. QCAL is the DN value for every separate pixel in the Landsat image. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Accessing the metadata:&lt;br /&gt;
&lt;br /&gt;
    $ r.info lsat7_2002_xx&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Under ‘comments’, the maximal and minimal radiance (LMAX and LMIN) for each band are given. Conversion to radiance (this calculation is done for band 1, for the other bands, the numbers in italics need to be replaced with their correct values):&lt;br /&gt;
&lt;br /&gt;
    $ r.mapcalc “lsat7_2002_10_rad=((''191.6'' - (''-6.2'')) / (255 - 1)) * (lsat7_2002_10 - 1) + (''-6.2'')”&lt;br /&gt;
&lt;br /&gt;
= Atmospheric correction =&lt;br /&gt;
&lt;br /&gt;
This radiance image can be used for the atmospheric correction with the 6S algorithm. The algorithm will transform the top-of-the-atmosphere radiance values to top-of-canopy reflectance values using predefined information on the aerosol content and atmospheric composition of the time the image was taken. What follows describes the method to use this algorithm in Grass GIS. Again, only the calculations for band 1 are shown, and the numbers to be changed for the other bands are indicated in red.The icnd file consists of the following parameters, and can be made in Notepad:&lt;br /&gt;
&lt;br /&gt;
* 8                          ''- indicates that it is an ETM+ image''&lt;br /&gt;
* 05 24 14.30 -78.691 35.749 ''- image taken on the 24th of May, at 14.30; the center of the image lies at 78.691°W and 35.749°N ''&lt;br /&gt;
* 2                          ''- the midlatitude summer atmospheric model''&lt;br /&gt;
* 1                          ''- the continental aerosol model''&lt;br /&gt;
* 50                         ''- the visibility for the aerosol model''&lt;br /&gt;
* -0.600                     ''- the area lies 600 meters above sea level''&lt;br /&gt;
* -1000                      ''- image taken of a satellite sensor''&lt;br /&gt;
* 61                         ''- spectral band''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This file is than used in the i.atcorr module:&lt;br /&gt;
&lt;br /&gt;
     $ i.atcorr –a iimg=lsat7_2002_10_rad ialt=elevation icnd=icdn.txt oimg=lsat7_2002_10_atcorr&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
* -a refers to a Landsat image taken after July 2000&lt;br /&gt;
* iimg is the image to be corrected&lt;br /&gt;
* ialt is the altitude map&lt;br /&gt;
* icnd is the path to the icnd.txt file&lt;br /&gt;
* oimg is the name of the output image&lt;br /&gt;
&lt;br /&gt;
More information on the use of i.atcorr for other images can be found at http://grass.itc.it/grass64/manuals/html64_user/i.atcorr.html . &lt;br /&gt;
&lt;br /&gt;
= References = &lt;br /&gt;
&lt;br /&gt;
* (1)  http://landsathandbook.gsfc.nasa.gov/handbook/handbook_htmls/chapter11/chapter11.html&lt;br /&gt;
* (2)  http://landsat.usgs.gov/documents/L5TM_postcal_v11.pdf&lt;/div&gt;</summary>
		<author><name>⚠️Annekatrien</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=File:Etm_minmaxradiance.JPG&amp;diff=8623</id>
		<title>File:Etm minmaxradiance.JPG</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=File:Etm_minmaxradiance.JPG&amp;diff=8623"/>
		<updated>2009-04-11T08:57:07Z</updated>

		<summary type="html">&lt;p&gt;⚠️Annekatrien: Table containing the minimum and maximum radiance values for Landsat ETM+ images&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Table containing the minimum and maximum radiance values for Landsat ETM+ images&lt;/div&gt;</summary>
		<author><name>⚠️Annekatrien</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=GRASS_Education_(Free_GIS_education)&amp;diff=8622</id>
		<title>GRASS Education (Free GIS education)</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=GRASS_Education_(Free_GIS_education)&amp;diff=8622"/>
		<updated>2009-04-11T08:33:26Z</updated>

		<summary type="html">&lt;p&gt;⚠️Annekatrien: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
Please modify current topics and content and/or add your own ideas and contributions&lt;br /&gt;
&lt;br /&gt;
== Promotional material ==&lt;br /&gt;
* See [[Promotional material]]&lt;br /&gt;
&lt;br /&gt;
== Teaching Concepts ==&lt;br /&gt;
&lt;br /&gt;
* [[Gis_Concepts|Basic GIS concepts]]&lt;br /&gt;
* [[GRASS_Help#First_Day_Documentation | GRASS First-day documentation ]]&lt;br /&gt;
&lt;br /&gt;
== Teaching Materials ==&lt;br /&gt;
&lt;br /&gt;
=== Seminars &amp;amp; Presentations ===&lt;br /&gt;
&lt;br /&gt;
* GRASS Presentations on [http://www.slideshare.net/search/slideshow?q=grass+gis Slideshare]&lt;br /&gt;
* GIS seminar: The GRASS GIS software at Politecnico di Milano, Polo Regionale di Como, 30 May 2006 (6h). Introduction to GRASS 6 and QGIS ([http://www.slideshare.net/markusN/the-grass-gis-software-with-qgis-gis-seminar-presentation Slides PDF/ODP/HTML])&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.osgeo.org/index.php/Library OSGeo Library]: Presentations and educational material&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[Import NoaaEnc]] Mini-tutorial&lt;br /&gt;
&lt;br /&gt;
* Tutorials by Yann Chemin: One document of small tutorials to get started in GRASS GIS and GRASS integration with QGIS.&lt;br /&gt;
** [http://trac.osgeo.org/grass/browser/grass-addons/tutorials/grass_starter] (LaTeX, Updated 20May07), covering:&lt;br /&gt;
*** QGIS introduction&lt;br /&gt;
*** QGIS GRASS plugin&lt;br /&gt;
*** GRASS GIS introduction&lt;br /&gt;
*** GRASS GIS DEM manipulations&lt;br /&gt;
*** GRASS GIS habitat analysis exercise&lt;br /&gt;
*** GRASS GIS scripting example for habitat exercise is provided in Appendix B&lt;br /&gt;
&lt;br /&gt;
The documents are in http://trac.osgeo.org/grass/browser/grass-addons/tutorials/grass_starter&lt;br /&gt;
&lt;br /&gt;
* [[Country Data Processing]] Tutorial&lt;br /&gt;
* [[Grass Vector Layers]] Tutorial&lt;br /&gt;
* [[Atmospheric correction]] Tutorial&lt;br /&gt;
&lt;br /&gt;
* [http://casoilresource.lawr.ucdavis.edu/drupal/node/95 Several Tutorials and Examples] mostly related toward soil science and hydrology&lt;br /&gt;
&lt;br /&gt;
=== Workshops ===&lt;br /&gt;
&lt;br /&gt;
* [[GRASS_related_workshops_and_presentations]] held at Lausanne, Switzerland, September 12-15th 2006&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Training Videos ===&lt;br /&gt;
&lt;br /&gt;
* GRASS 6.3 feature tour:&amp;lt;BR&amp;gt;http://www-pool.math.tu-berlin.de/~soeren/grass/modules/screenshots/grass63feature_tour.html&lt;br /&gt;
* The GRASS startup screen (select or create location, mapset,..) '''[TODO]'''&lt;br /&gt;
* Using the gis.m GUI '''[TODO]'''&lt;br /&gt;
* [http://crs.itb.ac.id/media/flash/  Several flash videos on using GRASS in Ubuntu] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== How to create them ====&lt;br /&gt;
&lt;br /&gt;
* A short vnc2swf usage tutorial is available here:&amp;lt;BR&amp;gt;http://www-pool.math.tu-berlin.de/~soeren/grass/modules/screenshots/vnc2swf_usage.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Soeren used [http://www.unixuser.org/~euske/vnc2swf/ vnc2swf] to record that flash movie.&lt;br /&gt;
&lt;br /&gt;
The installation is easy if you have a Linux dist which provides all&lt;br /&gt;
needed python packages (pyGames and others I don't remember).&lt;br /&gt;
&lt;br /&gt;
You would need a VNC-Server installed (not too tricky normally). The installation of vnc is easy. There are a lot of free vncserver and &lt;br /&gt;
clients out there in the internet.&lt;br /&gt;
&lt;br /&gt;
'''[list some here]'''&lt;br /&gt;
&lt;br /&gt;
To record a vnc session is not very complicated:&lt;br /&gt;
* First you have to run a vnc server and the client.&lt;br /&gt;
* The next step is to start vnc2swf.py with the address of the vncserver and a file name.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.osgeo.org/index.php/Education_Committee_Work_Program OSGeo.org Education Committee Work Program]&lt;br /&gt;
&lt;br /&gt;
== Technical Aspects ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Current Restrictions ==&lt;br /&gt;
&lt;br /&gt;
People want to upload their course material including PDFs, slide presentations, Flash tutorial movies, course material, lecture notes, &lt;br /&gt;
etc.. Because this wiki only supports text and simple graphics files, we have to find a solution to enable password controlled upload of large files. For this reason it is necessary to provide a dedicated general Free-GIS education server to support GRASS and Free GIS teaching and education efforts. For now contact the grass-dev mailing list if you want something uploaded.&lt;br /&gt;
&lt;br /&gt;
From our point of view a natural home for Free-GIS-Edu documentation, video tutorials, presentations, PDFs, etc. could be:&lt;br /&gt;
&lt;br /&gt;
* [http://trac.osgeo.org/grass/browser/grass-addons/tutorials grass-addons SVN]&lt;br /&gt;
* [http://download.osgeo.org/grass OSGeo Download Server]&lt;br /&gt;
* [http://trac.osgeo.org/grass/  GRASS bug/wish tracker]&lt;br /&gt;
* [http://freegis.org Intevation's FreeGIS.org]&lt;br /&gt;
&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>⚠️Annekatrien</name></author>
	</entry>
</feed>