<?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%8FSeumas</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%8FSeumas"/>
	<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/wiki/Special:Contributions/%E2%9A%A0%EF%B8%8FSeumas"/>
	<updated>2026-05-26T14:49:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=Marine_Science&amp;diff=15115</id>
		<title>Marine Science</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=Marine_Science&amp;diff=15115"/>
		<updated>2012-03-15T10:45:16Z</updated>

		<summary type="html">&lt;p&gt;⚠️Seumas: /* Mirone */ updated link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tools for marine scientists ==&lt;br /&gt;
&lt;br /&gt;
=== Bathymetry processing ===&lt;br /&gt;
&lt;br /&gt;
'''''Please expand'''''&lt;br /&gt;
* Basic DEM creation: {{cmd|v.in.ascii}} + {{cmd|v.surf.rst}}&lt;br /&gt;
* {{cmd|r.in.xyz}} for processing multibeam sonar swaths&lt;br /&gt;
* {{AddonCmd|r.surf.nnbathy}} add-on script for creating bathymetic DEMs from input x,y,z data&lt;br /&gt;
* {{AddonCmd|v.in.mbsys_fnv}} add-on script for importing nav data from MB-System&lt;br /&gt;
&lt;br /&gt;
==== Bathymetric data ====&lt;br /&gt;
&lt;br /&gt;
* See the [[Global datasets]] wiki page for more datasets (ETOPO, GEBCO, etc.)&lt;br /&gt;
&lt;br /&gt;
* Smith and Sandwell 1-minute global elevation v10.1, May 13, 2008&lt;br /&gt;
: http://topex.ucsd.edu/marine_topo/mar_topo.html  (712mb)&lt;br /&gt;
&lt;br /&gt;
global_topo_1min/README_V10.1.txt file:&lt;br /&gt;
&lt;br /&gt;
 Version 9.1 has a very different FORMAT than V8.2&lt;br /&gt;
 The main differences are that the grid spacing in &lt;br /&gt;
 longitude is now 1 minute rather than 2 minutes.&lt;br /&gt;
 In addition, the latitude range is increased to &lt;br /&gt;
 +/- 80.738.  Like the old versions, the elevation(+)&lt;br /&gt;
 and depth(-) are stored as 2-byte integers to the nearest meter.&lt;br /&gt;
 An odd depth of say -2001m signifies that this pixel was constrained&lt;br /&gt;
 by a real depth sounding while an even depth of say -2000m is&lt;br /&gt;
 a predicted depth.&lt;br /&gt;
 &lt;br /&gt;
 Here are the parameters for the old and new versions:&lt;br /&gt;
 param    V8.2     V9.2&lt;br /&gt;
 ___________________________&lt;br /&gt;
 nlon     10800    21600&lt;br /&gt;
 nlat     12672    17280&lt;br /&gt;
 rlt0   -72.006  -80.738&lt;br /&gt;
 rltf    72.006   80.738&lt;br /&gt;
 ___________________________&lt;br /&gt;
 &lt;br /&gt;
 The binary format of the integers is bigendian so the bytes need to be &lt;br /&gt;
 swapped if you are running on an Intel processor.&lt;br /&gt;
 Here is a typical command for swapping bytes:&lt;br /&gt;
 dd if=topo_9.1.img of=topo_9.1.img.swab bs=21600 conv=swab.&lt;br /&gt;
&lt;br /&gt;
* GMT's img2grd + grd2xyz shows FP elevation values to the nearest cm not meter. Are these from contributed datasets? How does that fit with the odd/even real/interpolated soundings?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Import using GMT =====&lt;br /&gt;
&lt;br /&gt;
* see also the [[GRASS and GMT]] wiki page.&lt;br /&gt;
&lt;br /&gt;
Process with GMT's img2grd to convert from spherical Mercator projection to geographic coordinates, then import into GRASS&lt;br /&gt;
: http://osdir.com/ml/gis.gmt.user/2005-04/msg00087.html&lt;br /&gt;
&lt;br /&gt;
  img2grd topo_10.1.img -T1 -S1 -V -R0/360/-80.738/80.738 -m1 -D -Gtopo_all.grd&lt;br /&gt;
  # (out of memory, needs 1.4gb)&lt;br /&gt;
  # try just for NZ   (W/E/S/N bounds)&lt;br /&gt;
  REGION=160/180/-50/-30&lt;br /&gt;
  img2grd topo_10.1.img -T1 -S1 -V -R&amp;quot;$REGION&amp;quot; -m1 -D -Gtopo_NZ.grd&lt;br /&gt;
  grd2xyz topo_NZ.grd -S &amp;gt; topo_NZ.xyz&lt;br /&gt;
 &lt;br /&gt;
  # get adjusted region bounds and resolution from img2grd output&lt;br /&gt;
  # ** check that rows and columns match **&lt;br /&gt;
  g.region n=-29.9945810754 s=-50.0056468984 w=160E e=180 \&lt;br /&gt;
     ewres=0:01 nsres=0.0126094 -p&lt;br /&gt;
 &lt;br /&gt;
  r.in.xyz in=topo_NZ.xyz out=topo_NZ_1min fs=tab&lt;br /&gt;
  r.colors output=topo_NZ_1min color=etopo2&lt;br /&gt;
&lt;br /&gt;
To save a step or some disk space, in the above you could set the region first then pipe grd2xyz directly into {{cmd|r.in.xyz}} instead of creating the &amp;lt;tt&amp;gt;.xyz&amp;lt;/tt&amp;gt; file.&lt;br /&gt;
&lt;br /&gt;
  # create a r.in.xyz &amp;quot;n&amp;quot; map to test input point coverage&lt;br /&gt;
  r.in.xyz in=topo_NZ.xyz out=topo_NZ_1min_n fs=tab method=n&lt;br /&gt;
  # check rast map stats, min=max=1 and there should be no null cells&lt;br /&gt;
  r.univar topo_NZ_1min_n&lt;br /&gt;
  # cleanup&lt;br /&gt;
  g.remove topo_NZ_1min_n&lt;br /&gt;
&lt;br /&gt;
or, import GMT .grd file directly (old GMT grd format introduces FP +0.005 elev shift error??). New GMT netCDF format .grd files can be imported with the {{cmd|r.in.gdal}} module. &lt;br /&gt;
  # convert COARDS-compliant netCDF grdfile to old GMT native .grd&lt;br /&gt;
  grdreformat topo_NZ.grd topo_NZ_old.grd=bf&lt;br /&gt;
  # import&lt;br /&gt;
  r.in.bin -hf in=topo_NZ_old.grd out=topo_NZ_old&lt;br /&gt;
&lt;br /&gt;
===== Import directly =====&lt;br /&gt;
&lt;br /&gt;
To load it into GRASS lat/lon location (spherical):&lt;br /&gt;
&lt;br /&gt;
: Location setup:&lt;br /&gt;
: http://thread.gmane.org/gmane.comp.gis.gmt.user/918&lt;br /&gt;
: http://article.gmane.org/gmane.comp.gis.proj-4.devel/192/&lt;br /&gt;
&lt;br /&gt;
Is it even possible to load directly into GRASS?&lt;br /&gt;
&lt;br /&gt;
Set up Mercator/Sphere location:&lt;br /&gt;
* {{cmd|g.setproj}} commands for manual projection settings&lt;br /&gt;
 Projection type&amp;gt; D &amp;quot;other&amp;quot;&lt;br /&gt;
 proj&amp;gt; merc&lt;br /&gt;
 No datum&lt;br /&gt;
 ellipsoid&amp;gt; sphere&lt;br /&gt;
 radius&amp;gt; default (doesn't matter)&lt;br /&gt;
 Scale Factor&amp;gt; 1.0&lt;br /&gt;
 Latitude of True Scale&amp;gt; 0&lt;br /&gt;
 Central Meridian&amp;gt; 0&lt;br /&gt;
&lt;br /&gt;
Which creates:&lt;br /&gt;
 G63&amp;gt; g.proj -j&lt;br /&gt;
 +proj=merc&lt;br /&gt;
 +k_0=1.0000000000&lt;br /&gt;
 +lat_ts=0.0000000000&lt;br /&gt;
 +lon_0=0.0000000000&lt;br /&gt;
 +a=6370997&lt;br /&gt;
 +b=6370997&lt;br /&gt;
 +no_defs&lt;br /&gt;
 +to_meter=1.0&lt;br /&gt;
 &lt;br /&gt;
 G63&amp;gt; g.proj -w&lt;br /&gt;
 PROJCS[&amp;quot;Mercator&amp;quot;,&lt;br /&gt;
    GEOGCS[&amp;quot;unnamed&amp;quot;,&lt;br /&gt;
        DATUM[&amp;quot;unknown&amp;quot;,&lt;br /&gt;
            SPHEROID[&amp;quot;unnamed&amp;quot;,6370997,&amp;quot;inf&amp;quot;]],&lt;br /&gt;
        PRIMEM[&amp;quot;Greenwich&amp;quot;,0],&lt;br /&gt;
        UNIT[&amp;quot;degree&amp;quot;,0.0174532925199433]],&lt;br /&gt;
    PROJECTION[&amp;quot;Mercator_2SP&amp;quot;],&lt;br /&gt;
    PARAMETER[&amp;quot;standard_parallel_1&amp;quot;,0],&lt;br /&gt;
    PARAMETER[&amp;quot;latitude_of_origin&amp;quot;,0],&lt;br /&gt;
    PARAMETER[&amp;quot;central_meridian&amp;quot;,0],&lt;br /&gt;
    PARAMETER[&amp;quot;false_easting&amp;quot;,0],&lt;br /&gt;
    PARAMETER[&amp;quot;false_northing&amp;quot;,0],&lt;br /&gt;
    UNIT[&amp;quot;meter&amp;quot;,1]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Some web searches show people using the MRWORLD projection??&lt;br /&gt;
** &amp;quot;MRWORLD&amp;quot; also seen in ftp://topex.ucsd.edu/pub/global_topo_1min/topo_9.1b.img.ers&lt;br /&gt;
** gdal's ermapper support files has params:  (/usr/share/gdal/ecw_cs.dat)&lt;br /&gt;
 MRWORLD:PROJCS[&amp;quot;unnamed&amp;quot;,PROJECTION[&amp;quot;Mercator_1SP&amp;quot;],&lt;br /&gt;
  PARAMETER[&amp;quot;latitude_of_origin&amp;quot;,0],&lt;br /&gt;
  PARAMETER[&amp;quot;central_meridian&amp;quot;,0],&lt;br /&gt;
  PARAMETER[&amp;quot;scale_factor&amp;quot;,1],&lt;br /&gt;
  PARAMETER[&amp;quot;false_easting&amp;quot;,20000000],&lt;br /&gt;
  PARAMETER[&amp;quot;false_northing&amp;quot;,0]]&lt;br /&gt;
&lt;br /&gt;
Note Mercator_1SP vs. Mercator_2SP in the above.&lt;br /&gt;
(does 2 std parallels merc with only one defined == 1 std par merc?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Load using r.in.bin&lt;br /&gt;
  # the following does not work correctly, just a trial&lt;br /&gt;
  # offset n,s,e,w by 1/2 a grid cell?&lt;br /&gt;
  r.in.bin input=topo_9.1b.img output=topo_9.1b \&lt;br /&gt;
       title=&amp;quot;1' worldwide relief (1.852 km-sq)&amp;quot; \&lt;br /&gt;
       -b -s bytes=2 rows=17280 cols=21600 \&lt;br /&gt;
       n=80.738 s=-80.738 w=0 e=360&lt;br /&gt;
 &lt;br /&gt;
   r.colors output=topo_9.1b color=etopo2&lt;br /&gt;
&lt;br /&gt;
===== Official coloring =====&lt;br /&gt;
&lt;br /&gt;
Download the &amp;quot;official&amp;quot; GMT color rules from:&lt;br /&gt;
 wget ftp://topex.ucsd.edu/pub/global_topo_1min/gmt_examples/map/topo.cpt&lt;br /&gt;
&lt;br /&gt;
Convert HSV GMT cpt color rules to RGB GRASS color rules with the [http://trac.osgeo.org/grass/browser/grass-addons/raster/r.colors.tools r.cpt2grass] add-on script.&lt;br /&gt;
 r.cpt2grass in=topo.cpt out=palette_topo.gcolors&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- An already converted version can be found in the palette_topo.gcolors file [http://trac.osgeo.org/grass/browser/grass-addons/raster/r.colors.tools/palettes/ here]. --&amp;gt;&lt;br /&gt;
(HSV -&amp;gt; RGB conversion in that script is now partially functional)&lt;br /&gt;
&lt;br /&gt;
=== Multibeam sonar processing ===&lt;br /&gt;
&lt;br /&gt;
* See the [[LIDAR|LIDAR and Multi-beam Swath bathymetry data]] wiki help page&lt;br /&gt;
* {{cmd|r.in.xyz}} can import multibeam sonar swaths from a raw x,y,z stream and bin them on the fly using statistical filters.&lt;br /&gt;
&lt;br /&gt;
==== MB-System ====&lt;br /&gt;
&lt;br /&gt;
* The [[MB-System]] wiki page contains details and examples.&lt;br /&gt;
&lt;br /&gt;
* MB-System ([http://www.ldeo.columbia.edu/res/pi/MB-System/ website]) is Free software for the processing and display of swath and sidescan sonar data. It can handle both multibeam bathymetry and sidescan sonar image data.&lt;br /&gt;
&lt;br /&gt;
==== Mirone ====&lt;br /&gt;
&lt;br /&gt;
* http://w3.ualg.pt/~jluis/mirone/&lt;br /&gt;
&lt;br /&gt;
* From the Google Code project description:&lt;br /&gt;
: ''&amp;quot;Mirone is a Windows MATLAB-based framework tool that allows the display and manipulation of a large number of grid/images formats through its interface with the GDAL library. Its main purpose is to provide users with an easy-to-use graphical interface to manipulate GMT grids. In addition it offers a wide range of tools dedicated to topics in the earth sciences, including tools for multibeam mission planning, elastic deformation studies, tsunami propagation modeling, earth magnetic field computations and magnetic Parker inversions, Euler rotations and poles computations, plate tectonic reconstructions, and seismicity and focal mechanism plotting. The high quality mapping and cartographic capabilities for which GMT is renowned is guaranteed through Mirone’s ability to automatically generate GMT cshell scripts and dos batch files.&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
You can interface with it via GDAL/GMT/netCDF formats, or&lt;br /&gt;
directly transfer Matlab arrays with the {{cmd|r.out.mat}} and {{cmd|r.in.mat}} modules.&lt;br /&gt;
&lt;br /&gt;
=== Sidescan sonar processing ===&lt;br /&gt;
&lt;br /&gt;
* [[MB-System]], as above.&lt;br /&gt;
&lt;br /&gt;
* [[GRASS_AddOns#i.warp|i.warp]] script for georectifying and mosaicking scanned paper rolls into a GeoTIFF with [http://www.gdal.org/ GDAL]'s gdalwarp program&lt;br /&gt;
&lt;br /&gt;
* [http://david.p.finlayson.googlepages.com/swathwidth v.swathwidth] script for planning swath bathymetry surveys&lt;br /&gt;
&lt;br /&gt;
=== Wave exposure ===&lt;br /&gt;
&lt;br /&gt;
* Using GRASS to prepare and process data for the SWAN Wave Model&lt;br /&gt;
** preparing input DEM&lt;br /&gt;
** {{cmd|r.in.mat}} and {{cmd|r.out.mat}} for import and export from Matlab or [http://www.gnu.org/software/octave/ Octave].&lt;br /&gt;
&lt;br /&gt;
=== Circulation models ===&lt;br /&gt;
&lt;br /&gt;
* Preparing input grids&lt;br /&gt;
** {{cmd|r.in.mat}} and {{cmd|r.out.mat}}&lt;br /&gt;
** triangular grids: see Pavel's work (of {{AddonCmd|r.surf.nnbathy}} fame) and Laura's work (of {{cmd|r.terraflow}} fame)&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
&lt;br /&gt;
=== Remote Sensing ===&lt;br /&gt;
&lt;br /&gt;
* Importing [[MODIS]] Aqua SST and chlorophyll-''a'' data, [[SeaWiFS]] chlorophyll-''a'', and Pathfinder [[AVHRR]] SST satellite images.&lt;br /&gt;
&lt;br /&gt;
== Mapping and Cartography ==&lt;br /&gt;
&lt;br /&gt;
* [[GRASS_and_GMT|Using GMT with GRASS]]&lt;br /&gt;
* [[S-57_data|Using vector electronic navigation charts with GRASS]]&lt;br /&gt;
* [[BSB_data|Using rasterized navigation charts with GRASS]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Applications]]&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>⚠️Seumas</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=GRASS_6_Tutorial&amp;diff=13980</id>
		<title>GRASS 6 Tutorial</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=GRASS_6_Tutorial&amp;diff=13980"/>
		<updated>2011-08-23T15:31:59Z</updated>

		<summary type="html">&lt;p&gt;⚠️Seumas: link to previous tutorial on the same domain&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Free Software/Open Source GIS GRASS 6 is fully operational and stable version for production use.  This tutorial tries to&lt;br /&gt;
give you a hand to familiarize yourself with the improved functionality, especially in the vector engine and attribute management.&lt;br /&gt;
For further reading, see the references below.&lt;br /&gt;
&lt;br /&gt;
'''Disclaimer:''' In case the examples described here do not work properly, you are kindly invited to send us further examples and/or code bugfixes/enhancements. Enjoy the WIKI!&lt;br /&gt;
&lt;br /&gt;
This tutorial is intended for GRASS users who want to migrate from a previous release to the new GRASS Version. If you are a beginner, please also consider additional [http://grass.itc.it/gdp/tutorials.php books or tutorials].&lt;br /&gt;
&lt;br /&gt;
'''''NOTE: This tutorial here still awaits the merge of the [http://grass.osgeo.org/grass57/tutorial/ previous GRASS 5.7 tutorial].'''''&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
New GRASS development has made major improvements to the vector&lt;br /&gt;
architecture. The most significant change includes a new 2- and&lt;br /&gt;
3-dimensional vector library that manages vector attributes in&lt;br /&gt;
standard database management systems (DBMS). This system provides the&lt;br /&gt;
power of true relational databases for vector attribute management&lt;br /&gt;
while preserving the flexibility of traditional GRASS topological&lt;br /&gt;
tools. GRASS now also incorporates true 3-dimensional voxels in the&lt;br /&gt;
[http://grass.itc.it/gdp/nviz/index.html NVIZ] visualization environment as well as [http://grass.itc.it/grass60/index.php numerous enhancements] to&lt;br /&gt;
virtually every tool in the GRASS library.&lt;br /&gt;
&lt;br /&gt;
==Getting started in general==&lt;br /&gt;
&lt;br /&gt;
* [[GRASS_Help| Introductory Material]] for GRASS&lt;br /&gt;
* [http://www.linux.org/lessons/ Introductory Material] for Linux&lt;br /&gt;
&lt;br /&gt;
==Getting started - how to migrate to the new GRASS version==&lt;br /&gt;
&lt;br /&gt;
* [[Grass Six Tutorial Getting Started]]&lt;br /&gt;
* [[GRASS_Help#Migration_from_other_GIS_Software|Migration tips]] from other GIS softwares&lt;br /&gt;
&lt;br /&gt;
==Raster data management==&lt;br /&gt;
&lt;br /&gt;
* The raster management works as it did in previous GRASS versions.&lt;br /&gt;
: Tutorials and books written for GRASS 4 and 5 should for the most part still work.&lt;br /&gt;
* [http://grass.ibiblio.org/grass63/manuals/html63_user/rasterintro.html Raster data processing introduction] from the main help manual.&lt;br /&gt;
&lt;br /&gt;
==Vector data management==&lt;br /&gt;
&lt;br /&gt;
* [http://grass.ibiblio.org/grass63/manuals/html63_user/vectorintro.html Vector data processing introduction] from the main help manual.&lt;br /&gt;
&lt;br /&gt;
===[[Grass Six Tutorial Default Settings]]=== &lt;br /&gt;
       -  Default settings for vector geometry;&lt;br /&gt;
          for vector attributes; for db.* modules&lt;br /&gt;
&lt;br /&gt;
===[[Grass Six Tutorial Geometry Management]]=== &lt;br /&gt;
http://grass.osgeo.org/grass57/tutorial/geom_storage.html&lt;br /&gt;
        -  General notes on Geometry &lt;br /&gt;
          management; Managing the default settings; &lt;br /&gt;
          GRASS vector architecture; Geometry stored in native format;&lt;br /&gt;
          Geometry stored in SHAPE file; &lt;br /&gt;
          Import/export of vector data Geometry;&lt;br /&gt;
          Generating vector geometry from various sources&lt;br /&gt;
&lt;br /&gt;
===[[Grass Six Tutorial Attribute Management]]===&lt;br /&gt;
http://grass.osgeo.org/grass57/tutorial/attrib_storage.html&lt;br /&gt;
        - General notes on Attribute &lt;br /&gt;
          management; Managing the default settings; Examples;&lt;br /&gt;
          Database Schema&lt;br /&gt;
&lt;br /&gt;
==Usage examples==&lt;br /&gt;
&lt;br /&gt;
''There await porting from the GRASS 5.7 tutorial''&lt;br /&gt;
&lt;br /&gt;
===Basic usage examples===&lt;br /&gt;
http://grass.osgeo.org/grass57/tutorial/ex_basic.html&lt;br /&gt;
&lt;br /&gt;
===Complex usage examples===&lt;br /&gt;
http://grass.osgeo.org/grass57/tutorial/ex_complex.html&lt;br /&gt;
&lt;br /&gt;
===Vector network analysis examples===&lt;br /&gt;
&lt;br /&gt;
* New Spearfish examples: [http://grass.osgeo.org/grass63/manuals/html63_user/v.net.html v.net], [http://grass.osgeo.org/grass63/manuals/html63_user/v.net.iso.html v.net.iso], [http://grass.osgeo.org/grass63/manuals/html63_user/v.net.path.html v.net.path] etc.&lt;br /&gt;
* Old tutorial: http://grass.osgeo.org/grass57/tutorial/network.html&lt;br /&gt;
&lt;br /&gt;
===Vector overlay/clipping examples===&lt;br /&gt;
http://grass.osgeo.org/grass57/tutorial/vectoroverlay.html&lt;br /&gt;
&lt;br /&gt;
===Examples from US National Atlas===&lt;br /&gt;
http://grass.osgeo.org/grass57/tutorial/usa_demo.html&lt;br /&gt;
&lt;br /&gt;
===FAQ (Frequently Asked Questions)===&lt;br /&gt;
* [[Faq|GRASS Wiki FAQ]]&lt;br /&gt;
&lt;br /&gt;
* [[Grass Six Tutorial Faq]]&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
http://grass.osgeo.org/grass57/tutorial/troubleshooting.html&lt;br /&gt;
&lt;br /&gt;
* Grass Six Tutorial Troubleshooting&lt;br /&gt;
&lt;br /&gt;
==Links of interest==&lt;br /&gt;
&lt;br /&gt;
* GRASS-GMT Examples: http://169.237.35.250/~dylan/grass_user_group/&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
&lt;br /&gt;
===GRASS and R kriging interpolation===&lt;br /&gt;
&lt;br /&gt;
====Mini How to interpolate using kriging with GRASS and R====&lt;br /&gt;
&lt;br /&gt;
[[How to interpolate point value using kriging method with R and GRASS 6]]&lt;br /&gt;
&lt;br /&gt;
==== References ====&lt;br /&gt;
* GRASS [http://grass.osgeo.org/gdp/tutorials.php books and tutorials]&lt;br /&gt;
* GRASS 6 Tutorial: http://www.gdf-hannover.de/literature&lt;br /&gt;
* Translation Portal for GRASS 6 Tutorial http://www.gdf-hannover.de/translation&lt;br /&gt;
&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>⚠️Seumas</name></author>
	</entry>
</feed>