Browse Source

HTML cosmetics

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55788 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 12 years ago
parent
commit
2ad6aa426c
3 changed files with 3 additions and 3 deletions
  1. 1 1
      imagery/i.atcorr/i.atcorr.html
  2. 1 1
      raster/r.sun/r.sun.html
  3. 1 1
      raster3d/r3.gwflow/r3.gwflow.html

+ 1 - 1
imagery/i.atcorr/i.atcorr.html

@@ -628,7 +628,7 @@ Conversion to radiance (this calculation is done for band 4, for the other bands
 need to be replaced with their related values):
 
 <div class="code"><pre>
-r.mapcalc "lsat7_2002_40_rad=((241.1 - (-5.1)) / (255.0 - 1.0)) * (lsat7_2002_40 - 1.0) + (-5.1)"
+r.mapcalc "lsat7_2002_40_rad = ((241.1 - (-5.1)) / (255.0 - 1.0)) * (lsat7_2002_40 - 1.0) + (-5.1)"
 </pre></div>
 
 

+ 1 - 1
raster/r.sun/r.sun.html

@@ -215,7 +215,7 @@ be supplied as a raster map with the <em>long_in</em> parameter. Within a
 latlon location, such a map can be easily made with:
 
 <div class="code"><pre>
-r.mapcalc lon_raster='x()'
+r.mapcalc "lon_raster = x()"
 </pre></div>
  
 END OF WE DON'T KNOW 

+ 1 - 1
raster3d/r3.gwflow/r3.gwflow.html

@@ -74,7 +74,7 @@ data. It cannot be run in a lat/lon location.
 
 <div class="code"><pre>
 # set the region accordingly
-g.region res=25 res3=25 t=100 b=0 n=1000 s=0 w=0 e=1000 -p
+g.region res=25 res3=25 t=100 b=0 n=1000 s=0 w=0 e=1000 -p3
 
 #now create the input raster maps for a confined aquifer
 r3.mapcalc expression="phead = if(row() == 1 && depth() == 4, 50, 40)"