<br><br><div class="gmail_quote">2009/4/9 Moritz Lennert <span dir="ltr">&lt;<a href="mailto:mlennert@club.worldonline.be">mlennert@club.worldonline.be</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On 09/04/09 11:17, Cassiel wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>
<br>
each and every location dir belong to my user, which in turn is the<br>
same on every machine I am allowed to log in.<br>
<br>
WINDOWS file are there with the same permissions<br>
<br>
... I can&#39;t figure out why this worked in past and now it seems<br>
broken<br>
<br>
Other hints?<br>
</blockquote>
<br></div><div class="im">
In your first post you wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
At grass startup, once I select the gisbase dir, every mapset I try<br>
to access results in this error message &quot;this is not a valid mapset&quot;.<br>
</blockquote>
<br></div>
If this is the exact error message, then the only place I can find this in the source code is in lib/init/gis_set.tcl as a result of a failed CheckMapset, which is just:<br>
<br>
proc CheckMapset {} {<br>
        global database location mapset<br>
<br>
        if { $mapset == &quot;&quot; } { return 0; }<br>
<br>
        if { [file exists &quot;$database/$location/$mapset/WIND&quot;] } {<br>
                return 1<br>
        }<br>
        return 0<br>
}<br>
<br>
So, it fails either if the mapset variable is empty, or if there is no WIND file in the mapset (or at least if file exists returns 0 - don&#39;t know in which cases it does this).<br>
<br>
Are you sure that the gis-database is correclty defined ?<br>
Have you tried accessing the mapsets directly on the command line without going through the GUI ?<br><font color="#888888">
<br>
Moritz<br>
</font></blockquote></div><br>Hi,<br><br>I finally solved looking the location dirs side by side with mc.<br><br>Moving from the old machine on the removable drive and from the latter to the newer machine changed the case of the VAR and WIND file inside the location dirs. What sounds very strange to me is why only those two files plus a MYNAME one... <br>
<br>Changing WIND and VAR to upper case solved the problem as CheckMapset returns true.<br><br>Thank you all for helping<br><br>regards<br>raffaele<br>