GIS to GRASS command translation: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
No edit summary
(content was obsolete, redirect to closest page content-wise (alternative would be intention-wise which is GRASS migration hints))
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Translation Quick Reference Table==
#REDIRECT [[GRASS GIS for ArcGIS users]]
{| border="1"
! GIS Software/Module !! GIS command/feature !! GRASS command(s) !! [[#Notes on discrepancies|Discrepancies*]]
|-
| ESRI ARC-INFO (GRID) || [[#GRID operators|GRID operators]] || r.mapcalc || None
|-
| ESRI ARC-INFO (ARC) || [[#LATTICESPOT|LATTICESPOT]] || v.what.rast || Major
|}
 
<small>
=====Notes on discrepancies=====
Clever GRASS users should be able to perfectly replicate commands from other software packages, either through coding or by adding new lines to the GRASS translation commands listed below.  Over time, discrepancies listed below should not exist as new ideas/code are added, but until then we rank the degree of discrepancy as follows:
* None: GRASS command(s) in the Translation Discussion should perfectly replicate the output of the GIS software command/feature.
* Minor: GRASS command(s) in the Translation Discussion should perfectly replicate the output of the GIS software command/feature with minor database/mapcalc post-processing of the outputs, or GRASS command(s) listed do not cover all possible options available from the GIS software/feature.
* Major: While basic functionality is analagous between the GIS software and GRASS commands listed, significant algorithmic differences exit that will result in different outputs. 
* Missing: The GIS software has a feature that is essentially missing/nonexistant in GRASS GIS.
</small>
 
==Translation Discussion==
===ESRI ARC-INFO===
====GRID operators====
{| border="1"
! GRID operator !! Description of operator !! Precendence !! r.mapcalc operator
|-
!Arithmetic:
|-
| - || unary minus || 12 ||
|-
| mod || modulus || 11 || %
|-
| * || multiplication || 11 || *
|-
| / || division || 11 || /
|-
| div || floating point division || 11 || /
|-
| + || addition || 10 || +
|-
| - || subtracts || 10 || -
|}
 
 
====LATTICESPOT====
{| border="1"
! GIS command/feature !! GRASS command(s)
|-
| LATTICESPOT <in_lattice> <in_cover> {spot_item} {z_factor} || v.what.rast vector=<in_cover> raster=<in_lattice> layer=layer column={spot_item}
|}
 
Discrepancies:
*Minor:
**{spot_item} defaults to "SPOT" for LATTICESPOT, but must be explicitly defined for v.what.rast.
**{z_factor} must be applied to the GRASS vector database after-the-fact.
*Major:
**LATTICESPOT performs a bilinear interpolation to assign raster values to the output vector, whereas v.what.rast uses nearest neighbor.

Latest revision as of 14:59, 22 August 2015