Hello,
I've installed the latest cvs version on an ubuntu hardy heron.
When I start grass at a certain mapset, it breaks because it finds ANY .gislock that is set at any mapset in that location. Then it mentions that concurrent use of mapsets is not allowed.
Any hint?
Thanks
Manuel
--
_______________________________________________________________________
Dr. Manuel Seeger
Wiss. Assistent Scientific Assistant
Physische Geographie Dpt. of Physical Geography
FB VI - Geographie/Geowissenschaften Geography/Geosciences
Universität Trier University of Trier
D - 54286 Trier
Tel.: +49-651-201 4557
Fax: +49-651-201 3976
Web: http://www-neu.uni-trier.de/index.php?id=9607
_______________________________________________________________________
EGU General Assembly 2009
SSS15. Experimental Methods in Soil Erosion Studies
Convener: Seeger, M.
Co-Convener: Kuhn, N.; Quinton, J.
_______________________________________________________________________
New publication:
Modelling dominant runoff production processes at the micro-scale
– a GIS-based and a statistical approach
C. Müller, H. Hellebrand, M. Seeger, and S. Schobel
http://www.hydrol-earth-syst-sci-discuss.net/5/1677/2008/hessd-5-1677-2008.pdf
please participate in discussion!
Manuel, all,
GRASS 7 development has finally really started:
http://lists.osgeo.org/pipermail/grass-dev/2008-August/039264.html
GRASS 7 will be unusable for a while, better to switch to 6.4 if
you want to remain productive.
Markus
On Thu, Aug 7, 2008 at 8:09 AM, Manuel Seeger <seeger@uni-trier.de> wrote:
Hello,
I've installed the latest cvs version on an ubuntu hardy heron.
When I start grass at a certain mapset, it breaks because it finds ANY
.gislock that is set at any mapset in that location. Then it mentions that
concurrent use of mapsets is not allowed.
Any hint?
Thanks
Manuel
On Thu, Aug 7, 2008 at 11:02 AM, Markus Neteler <neteler@osgeo.org> wrote:
Manuel, all,
GRASS 7 development has finally really started:
http://lists.osgeo.org/pipermail/grass-dev/2008-August/039264.html
GRASS 7 will be unusable for a while, better to switch to 6.4 if
you want to remain productive.
Forgot to add the web page where you find instructions to get 6.4.svn:
http://trac.osgeo.org/grass/wiki/DownloadSource#GRASS6.4
Markus
Markus Neteler wrote:
GRASS 7 development has finally really started:
http://lists.osgeo.org/pipermail/grass-dev/2008-August/039264.html
GRASS 7 will be unusable for a while, better to switch to 6.4 if
you want to remain productive.
While that's reasonable advice overall, I suspect that this particular
problem may not be related to the recent changes.
--
Glynn Clements <glynn@gclements.plus.com>
Glynn Clements schrieb:
Markus Neteler wrote:
GRASS 7 development has finally really started:
http://lists.osgeo.org/pipermail/grass-dev/2008-August/039264.html
GRASS 7 will be unusable for a while, better to switch to 6.4 if
you want to remain productive.
While that's reasonable advice overall, I suspect that this particular
problem may not be related to the recent changes.
Hello,
I had 6.3 running and now also 6.4. Works fine!
Thanks!
Manuel
--
_______________________________________________________________________
Dr. Manuel Seeger
Wiss. Assistent Scientific Assistant
Physische Geographie Dpt. of Physical Geography
FB VI - Geographie/Geowissenschaften Geography/Geosciences
Universität Trier University of Trier
D - 54286 Trier
Tel.: +49-651-201 4557
Fax: +49-651-201 3976
Web: http://www-neu.uni-trier.de/index.php?id=9607
_______________________________________________________________________
EGU General Assembly 2009
SSS15. Experimental Methods in Soil Erosion Studies
Convener: Seeger, M.
Co-Convener: Kuhn, N.; Quinton, J.
_______________________________________________________________________
New publication:
Modelling dominant runoff production processes at the micro-scale
– a GIS-based and a statistical approach
C. Müller, H. Hellebrand, M. Seeger, and S. Schobel
http://www.hydrol-earth-syst-sci-discuss.net/5/1677/2008/hessd-5-1677-2008.pdf
please participate in discussion!
Hy list,
could anybody help me to declare a 3D matrix in C GRASS module. I've to load several raster map with same location but I've an error in run time if I declare with G_malloc/G_calloc like that:
double ***mat;
mat=(double***)G_malloc(ndimension*(sizeof(double));
thanks
Gianluca
gianluca massei wrote:
could anybody help me to declare a 3D matrix in C GRASS module. I've to
load several raster map with same location but I've an error in run time
if I declare with G_malloc/G_calloc like that:
double ***mat;
mat=(double***)G_malloc(ndimension*(sizeof(double));
To implement variable-size multi-dimensional arrays in C, you have two
options:
1. Allocate a single contiguous block and calculate the indices
yourself, e.g.:
double *data = G_malloc(width * height * depth * sizeof(double));
#define DATA(x,y,z) (data[((z) * height + (y)) * width + (x)])
...
/* read element */
v = DATA(x,y,z);
/* write element */
DATA(x,y,z) = v;
2. Create arrays of pointers:
int i, j;
double ***data = G_malloc(depth * sizeof(double **));
for (j = 0; j < depth; j++)
{
data[j] = G_malloc(height * sizeof(double *));
for (i = 0; i < height; i++)
data[j][i] = G_malloc(width * sizeof(double));
}
...
/* read element */
v = data[z][y];
/* write element */
data[z][y] = v;
--
Glynn Clements <glynn@gclements.plus.com>