Pericles S. Nacionales | 1 Aug 2006 02:51
Picon

Re: [GRASS-user] RE: PSC: Nominations

Me 3! :)

-Perry

On Monday 31 July 2006 17:24, Tyler Mitchell wrote:
> Me too...
>
> On 31-Jul-06, at 2:56 PM, Michael Barton wrote:
> > I'll second that
> >
> > Dylan Beaudette +1

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser

Jonathan Greenberg | 1 Aug 2006 03:23
Picon
Picon

[GRASSLIST:1165] Log of GRASS activity?

Is there any way to keep a running log of all grass activity?

--j

--

Jonathan A. Greenberg, PhD
NASA Postdoctoral Researcher
NASA Ames Research Center
MS 242-4
Moffett Field, CA 94035-1000
Phone: 415-794-5043
AIM: jgrn3007
MSN: jgrn3007 <at> hotmail.com

M S | 1 Aug 2006 03:30
Picon

[GRASSLIST:1166] Re: Log of GRASS activity?

for commands issued?
maybe the shell "history" command?

On 7/31/06, Jonathan Greenberg <jgreenberg <at> arc.nasa.gov > wrote:
Is there any way to keep a running log of all grass activity?

--j

--

Jonathan A. Greenberg, PhD
NASA Postdoctoral Researcher
NASA Ames Research Center
MS 242-4
Moffett Field, CA 94035-1000
Phone: 415-794-5043
AIM: jgrn3007
MSN: jgrn3007 <at> hotmail.com



Manuel Seeger | 1 Aug 2006 08:15
Picon
Favicon

[GRASS-user] PSC nominations

Markus Neteler (+1)
Michael Barton (+1)

Greetings to all
The more I use GRASS, the more I like it!!

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.uni-trier.de/uni/fb6/geographie/mitarbeiter/Seeger/

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser

Markus Neteler | 1 Aug 2006 10:00
Picon

Re: [GRASS-dev] Re: [GRASS-user] RE: PSC: Nominations

On Tue, Aug 01, 2006 at 09:56:07AM +0200, Martin Landa wrote:
> Hi,
> 
> I would like to vote, but I am slightly confused about the current PSC
> nominations. Maybe it would be good to vote (or just publish the
> current list of nominations) using the wiki...(?) - or just update the
> page 
> http://grass.gdf-hannover.de/wiki/GRASS_Project_Steering_Commitee#Nominations

I agree - this would render it more transparent.

Markus

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser

Martin Wegmann | 1 Aug 2006 10:37
Picon

[GRASS-user] The State of Open Source GIS

a nice overview of Open Source GIS projects:

http://www.refractions.net/white_papers/index.php?file=2006-06-01_oss_briefing.data

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser

Moritz Lennert | 1 Aug 2006 11:56
Picon

[GRASS-user] displaying lines between given points

Hi,

A colleague of mine has a data set with airports (and their coordinates) 
and flights between these airports, i.e. something like this:

x1 y1 x2 y2 flights

He wants to display these connections as lines between the airports, 
whose line width is proportional to the number of flights.

Anyone have a great idea of how to do this in GRASS ? I currently see 
the following possibility:

1) use awk to transform the file into an ascii vector line file, i.e.:

L 2 1
x1 y1
x2 y2
1 flights

2) import with v.in.ascii

3) select distinct values from the cats column

4) loop through those distinct values and d.vect with line width set to 
cats value * scale

Anyone have a better idea ?

Moritz

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser

Nitin | 1 Aug 2006 12:14
Favicon

[GRASS-user] projection issue of dgn map

 
Hello everybody,
I am facing a problem with the projection information of DGN map read by GRASS. On my machine it is giving error by huge values.
Then i found on http://www.gdal.org/ogr/ogr_formats.html Microsoft dgn is not supported. Are we really not supported or it is just old page.
How i can solve my isue. Something need to be done with projection settings?
One more thing i don' know which version raster i am using . i downloaded from net.



_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser
Patton, Eric | 1 Aug 2006 13:28
Picon
Favicon

RE: [GRASS-user] displaying lines between given points

This sounds like the method I would have used. Have you had any luck so far?

~ Eric. 

-----Original Message-----
From: grassuser-bounces <at> grass.itc.it
To: GRASS users list
Sent: 8/1/2006 5:56 AM
Subject: [GRASS-user] displaying lines between given points

Hi,

A colleague of mine has a data set with airports (and their coordinates)

and flights between these airports, i.e. something like this:

x1 y1 x2 y2 flights

He wants to display these connections as lines between the airports, 
whose line width is proportional to the number of flights.

Anyone have a great idea of how to do this in GRASS ? I currently see 
the following possibility:

1) use awk to transform the file into an ascii vector line file, i.e.:

L 2 1
x1 y1
x2 y2
1 flights

2) import with v.in.ascii

3) select distinct values from the cats column

4) loop through those distinct values and d.vect with line width set to 
cats value * scale

Anyone have a better idea ?

Moritz

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser

Luca Casagrande | 1 Aug 2006 13:40
Picon
Gravatar

Re: [GRASS-user] displaying lines between given points

Alle 11:56, martedì 01 agosto 2006, Moritz Lennert ha scritto:
> Hi,
>
> A colleague of mine has a data set with airports (and their coordinates)
> and flights between these airports, i.e. something like this:
>
> x1 y1 x2 y2 flights
>
> He wants to display these connections as lines between the airports,
> whose line width is proportional to the number of flights.
>
> Anyone have a great idea of how to do this in GRASS ? I currently see
> the following possibility:
>
> 1) use awk to transform the file into an ascii vector line file, i.e.:
>
> L 2 1
> x1 y1
> x2 y2
> 1 flights
>
> 2) import with v.in.ascii
>
> 3) select distinct values from the cats column
>
> 4) loop through those distinct values and d.vect with line width set to
> cats value * scale
>
For line depth you can use the buffer feature...you can set the extension of 
the buffer by the number of flight between airport.

Can it works?

Bye
Luca

--

-- 
"Chiunque può simpatizzare col dolore di un amico, ma solo chi ha un animo 
nobile riesce a simpatizzare col successo di un amico (Oscar Wilde)"

LINUX User #411601
GENTOO-GIS Development Team
jabber: casagrande <at> jabber.linux.it

_______________________________________________
grassuser mailing list
grassuser <at> grass.itc.it
http://grass.itc.it/mailman/listinfo/grassuser


Gmane