Markus,
maybe you can replace the outdated command list reference on grass
manual page with Eric's list - it is really useful both for new and
old users.
http://www.geog.uni-hannover.de/grass/gdp/html_grass5/grass_commandlist.html
And here are the broken links
http://www.geog.uni-hannover.de/grass/grass5/related/README.mesa3d
(this link is called from
http://www.geog.uni-hannover.de/grass/grass5/binary/linux/REQUIREMENTS.html
several links:
http://www.geog.uni-hannover.de/grass/gdp/html_grass5/programming/time/index.html
http://www.geog.uni-hannover.de/grass/gdp/html_grass5/programming/sites-api/index.html
http://www.geog.uni-hannover.de/grass/gdp/html_grass5/programming/raster/fpnv.html
http://www.geog.uni-hannover.de/grass/gdp/html_grass5/programming/g3d/index.html
called from
http://www.geog.uni-hannover.de/grass/grass5/index.html
Also please update:
http://www.geog.uni-hannover.de/grass/grid3d/index.html
it has a link to s.vol.rst binaries and says that sources won't be
distributed.
As for s.vol.rst - it may actually be useful to include it into GRASS5 - it
can be run
without the grid3 if it is run with the option of bivariate interpolation
with additional variable (for example precipitation with influence of
terrain).
We just got a paper accepted about it to TGIS and we say that it is available
in GRASS5, so it would be nice to have it there. It works very well and there
aren't
many programs around that can do that. However, there is a problem with
compilation
without the g3d library so I would have to take out all the volume stuff and
we
may end up again with 2 versions of similar program. So I don't know, let me
know
what do you think.
Figure 4b and a related animation in the document
http://www2.gis.uiuc.edu:2280/modviz/viz/sinter.html
and
http://www2.gis.uiuc.edu:2280/modviz/viz/tropy.html
illustrates what the program does The input is 2D raster of elevation and site
precipitation
and output is precipitation raster map. It can be used also for other
phenomena.
Helena
Markus Neteler wrote:
On Wed, Jun 06, 2001 at 04:15:50AM +0100, Glynn Clements wrote:
[...]
> Anyway, all of this is moot unless g3d finds its way back into the
> source tree.
>
> So, should I get rid of the GLw checks altogether? Or is g3d's absence
> likely to be only temporary?
Glynn,
this g3d absence *is* only temporary unless the bugs are fixed. Jaro
Hofierka offered to look into them, probably he will find the time.
Or, Helena, could you provide some help?
Basic bug is the 3D coordinates system confusion: The 3D coordinates system
should be similar to GRASS 2D, just with a 3rd dimension. At time some
modules read bottom-up, other top-down etc. Maybe much of the problems
can be cleaned out without too much work, only someone has to fully
understand the g3d concept.
Markus
_______________________________________________
grass5 mailing list
grass5@geog.uni-hannover.de
http://www.geog.uni-hannover.de/mailman/listinfo/grass5
From neteler Tue Jun 19 23:29:06 2001
Return-Path: <neteler>
Received: by hgeo02.geog.uni-hannover.de (SMI-8.6/SMI-SVR4)
id XAA00419; Tue, 19 Jun 2001 23:29:06 +0100
Date: Tue, 19 Jun 2001 23:29:06 +0100
From: Markus Neteler <neteler@geog.uni-hannover.de>
To: Grass Developers <grass5@geog.uni-hannover.de>
Subject: Re: [GRASS5] Error to compile i.fft
Message-ID: <20010619232905.A29291@hgeo02.geog.uni-hannover.de>
Mail-Followup-To: Grass Developers <grass5@geog.uni-hannover.de>
References: <3B2F1895.3F60653F@hpcc.nectec.or.th> <20010619132536.M19538@hgeo02.geog.uni-hannover.de> <20010619140224.A25873@hgeo02.geog.uni-hannover.de>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <20010619140224.A25873@hgeo02.geog.uni-hannover.de>; from neteler@geog.uni-hannover.de on Tue, Jun 19, 2001 at 02:02:25PM +0100
Sender: grass5-admin@geog.uni-hannover.de
Errors-To: grass5-admin@geog.uni-hannover.de
X-BeenThere: grass5@geog.uni-hannover.de
X-Mailman-Version: 2.0.5
Precedence: bulk
List-Help: <mailto:grass5-request@geog.uni-hannover.de?subject=help>
List-Post: <mailto:grass5@geog.uni-hannover.de>
List-Subscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=subscribe>
List-Id: GRASS 5 Developers mailing list <grass5.geog.uni-hannover.de>
List-Unsubscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=unsubscribe>
List-Archive: <http://www.geog.uni-hannover.de/pipermail/grass5/>
Status: O
Content-Length: 1770
Lines: 54
On Tue, Jun 19, 2001 at 02:02:25PM +0100, Markus Neteler wrote:
Hi,
again on the "gmath"/numerical functions issue...
I need a recommendation.
Currently we face following situation:
- src/libes/gmath/ has been written by David to support LAPACK/BLAS
(it contains wrapper functions)
- we have spreading around numerous files containing various numerical
functions like fft, ifft, matrix operations etc.
My intention is to assemble all functionality in one library. So
I started to migrate all such functions into src/libes/gmath/
(as I did for i.fft and accidentially already uploaded).
A problem arises on those machines, which don't have LAPACK/BLAS and "g2c"
(requirement, which is the former f2c.h) installed.
For example you will get, when compiling "gmath":
src/include/la.h:28: g2c.h: No such file or directory
make: *** [OBJ.sparc-sun-solaris2.6/la.o] Error 1
Two solutions may the at our choice:
(1) split the library into two libraries
a) LAPACK/BLAS routines
b) others
(2) add some clever mechanism to selectively compile with/without
LAPACK/BLAS support. So far "configure" checks already the presence
of LAPACK/BLAS.
I would vote for (2), but don't know how to implement it. Must be some
ifdef's around "la.h"?
So far I have updated configure now to search for g2c.h and f2c.h.
The src/libes/gmath/la.c is compiled only, if g2c.h is present (shall we
allow f2c.h as well?). That should do the trick for (2) above.
To test, please update
cvs up configure configure.in
cvs up src/include
cvs up src/libes/gmath
To test:
configure
gmake5 src/libes/gmath
No error should occur.
In case of problems, please let me know.
Markus