I seem to recall stumbling across the language used for drawing new
symbols somewhere (like basic/x for example). But I can't find it
again. Is there a web site that has instructions?
I've taken a look at the included examples and they are helpful, but I
would like to see a list of keywords with usage instructions.
Thanks
David
--
David Finlayson
Marine Geology & Geophysics
School of Oceanography
Box 357940
University of Washington
Seattle, WA 98195-7940
USA
Office: Marine Sciences Building, Room 112
Phone: (206) 616-9407
Web: http://students.washington.edu/dfinlays
On Sat, Jun 11, 2005 at 11:50:57AM -0700, David Finlayson wrote:
I seem to recall stumbling across the language used for drawing new
symbols somewhere (like basic/x for example). But I can't find it
again. Is there a web site that has instructions?
In the source code:
lib/symbol/README
Online:
http://freegis.org/cgi-bin/viewcvs.cgi/grass6/lib/symbol/README?rev=HEAD&content-type=text/vnd.viewcvs-markup
I have added a link in
http://grass.gdf-hannover.de/twiki/bin/view/GRASS/GrassFAQPage
Markus
I've taken a look at the included examples and they are helpful, but I
would like to see a list of keywords with usage instructions.
Thanks
David
--
David Finlayson
Marine Geology & Geophysics
School of Oceanography
Box 357940
University of Washington
Seattle, WA 98195-7940
USA
Office: Marine Sciences Building, Room 112
Phone: (206) 616-9407
Web: http://students.washington.edu/dfinlays
--
Markus Neteler <neteler itc it> http://mpa.itc.it
ITC-irst - Centro per la Ricerca Scientifica e Tecnologica
MPBA - Predictive Models for Biol. & Environ. Data Analysis
Via Sommarive, 18 - 38050 Povo (Trento), Italy
Perfect.
David
On 6/12/05, Markus Neteler <neteler@itc.it> wrote:
On Sat, Jun 11, 2005 at 11:50:57AM -0700, David Finlayson wrote:
> I seem to recall stumbling across the language used for drawing new
> symbols somewhere (like basic/x for example). But I can't find it
> again. Is there a web site that has instructions?
In the source code:
lib/symbol/README
Online:
http://freegis.org/cgi-bin/viewcvs.cgi/grass6/lib/symbol/README?rev=HEAD&content-type=text/vnd.viewcvs-markup
I have added a link in
http://grass.gdf-hannover.de/twiki/bin/view/GRASS/GrassFAQPage
Markus
> I've taken a look at the included examples and they are helpful, but I
> would like to see a list of keywords with usage instructions.
>
> Thanks
>
> David
>
> --
> David Finlayson
> Marine Geology & Geophysics
> School of Oceanography
> Box 357940
> University of Washington
> Seattle, WA 98195-7940
> USA
>
> Office: Marine Sciences Building, Room 112
> Phone: (206) 616-9407
> Web: http://students.washington.edu/dfinlays
--
Markus Neteler <neteler itc it> http://mpa.itc.it
ITC-irst - Centro per la Ricerca Scientifica e Tecnologica
MPBA - Predictive Models for Biol. & Environ. Data Analysis
Via Sommarive, 18 - 38050 Povo (Trento), Italy
--
David Finlayson
Marine Geology & Geophysics
School of Oceanography
Box 357940
University of Washington
Seattle, WA 98195-7940
USA
Office: Marine Sciences Building, Room 112
Phone: (206) 616-9407
Web: http://students.washington.edu/dfinlays
Dear all,
I am trying to import a shapefiles to Postgresql by using modul pg.in.df.
The shapefiles dbf contain several columns and all columns were successfully transfered to database.
The weird thing, I guess, all data in one of those columns automatically converted to -2147483648. These supposed to contain village code (e.g., 3206390011).
Is this a bug?
Thanks.
Best regards,
Firman Hadi.
On Mon, 13 Jun 2005, Firman Hadi wrote:
Dear all,
I am trying to import a shapefiles to Postgresql by using modul pg.in.df.
The shapefiles dbf contain several columns and all columns were
successfully transfered to database.
The weird thing, I guess, all data in one of those columns automatically
converted to -2147483648. These supposed to contain village code (e.g.,
3206390011).
Is this a bug?
Maybe a misunderstanding, the values are going over the size limit for
signed integers (minimum signed integer = -2147483648), but should have
been stored as character strings not integer. If you have a way to check
the type of the field and if possible make it character, that should help.
Thanks.
Best regards,
Firman Hadi.
--
Roger Bivand
Economic Geography Section, Department of Economics, Norwegian School of
Economics and Business Administration, Helleveien 30, N-5045 Bergen,
Norway. voice: +47 55 95 93 55; fax +47 55 95 95 43
e-mail: Roger.Bivand@nhh.no
Dear Bivand, thanks for your suggestion.
It is true that the problem is related to type of data. By using the pg.in.dbf, the field village code was assigned to integer while the data value is longer.
So, I changed this field to character like you said, update the table by using sql and finally the problem is solved.
Thanks again.
Cheers,
Firman Hadi