[GRASS-SVN] r60866 - grass/trunk/scripts/m.proj

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jun 18 10:54:55 PDT 2014


Author: hcho
Date: 2014-06-18 10:54:55 -0700 (Wed, 18 Jun 2014)
New Revision: 60866

Modified:
   grass/trunk/scripts/m.proj/m.proj.html
Log:
m.proj: updated the manual to reflect recent changes to the default separator

Modified: grass/trunk/scripts/m.proj/m.proj.html
===================================================================
--- grass/trunk/scripts/m.proj/m.proj.html	2014-06-18 16:02:07 UTC (rev 60865)
+++ grass/trunk/scripts/m.proj/m.proj.html	2014-06-18 17:54:55 UTC (rev 60866)
@@ -87,8 +87,8 @@
 To convert a WGS84 long/lat coordinate to the current map projection
 using the <b>-i</b> flag to set projection parameters automatically:
 <div class="code"><pre>
-GRASS> echo "170.510125 -45.868537" | m.proj -i input=-
-2316541.70      5479193.51 1.23
+echo "170.510125 -45.868537" | m.proj -i input=-
+2316541.70|5479193.51|1.23
 </pre></div>
 
 <p>
@@ -96,7 +96,7 @@
 continue on to import the results into a GRASS vector points map in
 the current map projection:
 <div class="code"><pre>
-m.proj -i in=waypoints.txt | cut -f1 -d' ' | v.in.ascii out=test_pt separator=tab
+m.proj -i in=waypoints.txt | cut -f1-2 -d'|' | v.in.ascii out=test_pt
 </pre></div>
 
 Here the standard UNIX <em>cut</em> tool is used to discard
@@ -106,7 +106,7 @@
 To convert all coordinates from a vector points map in the current
 projection to WGS84 long/lat, with output in decimal form:
 <div class="code"><pre>
-v.out.ascii bugsites | m.proj -od
+v.out.ascii bugsites | m.proj -od input=-
 </pre></div>
 
 <p>



More information about the grass-commit mailing list