[GRASS-user] convert + ghostscript

2019-04-26 Thread Massimiliano Alvioli
hi all, I belive the last ghostscript update caused convert ot braek. I get a generic "Abort" error while trying to convert eps to png files. Massi ___ grass-user mailing list grass-user@lists.osgeo.org

Re: [GRASS-user] Read only mapsets

2019-04-26 Thread Markus Metz
On Fri, Apr 26, 2019 at 3:59 PM Moritz Lennert wrote: > > On 26/04/19 11:53, Panagiotis Mavrogiorgos wrote: > > Hello everyone, > > > > I was wondering, is there a way to enforce a Mapset to be read-only? I > > guess that this can always be enforced on the Filesystem level with > > something like

Re: [GRASS-user] create basins of similar area

2019-04-26 Thread Margherita Di Leo
Hi Martin, On Fri, Apr 26, 2019 at 3:35 PM Martin Landa wrote: > Hi, > > čt 25. 4. 2019 v 20:14 odesílatel Ken Mankoff napsal: > > Maybe make basins with threshold an order of magnitude smaller. Then > merge small areas to get your 4-5 km2 areas. Still not totally sure how > this makes sense

Re: [GRASS-user] create basins of similar area

2019-04-26 Thread Phillip Allen
Hi, Not to hijack this threadbut Actually what Martin is asking for would be useful for us in geochemical mineral exploration. Having GRASS create 4-5km2 (or whatever size range) basins/catchments automatically would be useful to create tentative stream sediment sample locations. I prefer

Re: [GRASS-user] Read only mapsets

2019-04-26 Thread Moritz Lennert
On 26/04/19 11:53, Panagiotis Mavrogiorgos wrote: Hello everyone, I was wondering, is there a way to enforce a Mapset to be read-only? I guess that this can always be enforced on the Filesystem level with something like this: find . -type f -exec chmod a-w {} \; but then again some

Re: [GRASS-user] create basins of similar area

2019-04-26 Thread Martin Landa
Hi, čt 25. 4. 2019 v 20:14 odesílatel Ken Mankoff napsal: > Maybe make basins with threshold an order of magnitude smaller. Then merge > small areas to get your 4-5 km2 areas. Still not totally sure how this makes > sense hydrologically. right, it doesn't make sense probably from hydrologic

Re: [GRASS-user] Read only mapsets

2019-04-26 Thread Panagiotis Mavrogiorgos
On Fri, Apr 26, 2019 at 2:24 PM Daniel Victoria wrote: > You could use the PERMANENT mapset for this purpose. Also, the AFAIK > mapsets are writable by the directory owner. So you could use the > filesystem setting to achieve what you want to do. > > There is a more detailed explanation here >

Re: [GRASS-user] Read only mapsets

2019-04-26 Thread Daniel Victoria
You could use the PERMANENT mapset for this purpose. Also, the AFAIK mapsets are writable by the directory owner. So you could use the filesystem setting to achieve what you want to do. There is a more detailed explanation here https://grasswiki.osgeo.org/wiki/Location_and_Mapsets Cheers On

[GRASS-user] Read only mapsets

2019-04-26 Thread Panagiotis Mavrogiorgos
Hello everyone, I was wondering, is there a way to enforce a Mapset to be read-only? I guess that this can always be enforced on the Filesystem level with something like this: find . -type f -exec chmod a-w {} \; but then again some file might need to be writable afterall (sqlite.db?) So is