[GRASSLIST:4186]

I am having a serious problem to import site data from an ascii file:
The file:
0 0 0
0 1 0
0 2 0
0 7 0

, which is saved as a *.txt with the editor from Windows contains the
easting in the first, the northing in the second and a category in the third
column.
The current region in Grass is: N 11, S-1, W -1 and East 11. The resolution
is 0.125. I am using Grass 53 for Cygwin.

s.in.ascii gives the following error: segmentation fault (core dumped)

The stackdump is tho follow:

xception: STATUS_ACCESS_VIOLATION at eip=610AEB58
eax=00000010 ebx=00000000 ecx=00000001 edx=00000008 esi=1E4643F5
edi=1E4643FD
ebp=0022ECA0 esp=0022EC68
program=M:\cygwin\usr\local\grass53\etc\bin\cmd\s.in.ascii, pid 1620, thread
main
cs=001B ds=0023 es=0023 fs=0038 gs=0000 ss=0023
Stack trace:
Frame Function Args
0022ECA0 610AEB58 (100206A0, 610D5140, 00000007, 61095455)
0022ECE0 610564E8 (1E4643FD, 00000008, 0022EF60, 00402054)
0022ED00 610882AF (1E4643FD, 00000008, 00000000, 0022ED60)
0022EF60 0040257C (100201EC, 00000000, 00000000, 0022EFA8)
0022F070 00401673 (00000001, 616E451C, 100200A8, 0022F0C8)
0022F0B0 61005ED4 (0022F0C8, 00000000, 00000000, 00000000)
0022FF90 610060EB (00000000, 00000000, 00000000, 00000000)
End of stack trace

Thanks for the help, Jan

I am having a serious problem to import site data from an ascii file:
The file:
0 0 0
0 1 0
0 2 0
0 7 0

, which is saved as a *.txt with the editor from Windows contains the
easting in the first, the northing in the second and a category in the
third column.
The current region in Grass is: N 11, S-1, W -1 and East 11. The
resolution is 0.125. I am using Grass 53 for Cygwin.

s.in.ascii gives the following error: segmentation fault (core dumped)

How old is your copy of 5.3? DOS (+Mac OS9) formatted text files would
cause this error on versions older than 23 March 2004. Newer versions
should work, and your example does under Linux with a DOS format input
file. You can convert to UNIX format via "Save As.." in TextPad
(textpad.com) or with a program like dos2unix (part of cygwin?).

If that fails you can also make 5.0/5.3 sites files directly, see the
help page for details.

The stackdump is tho follow:

The backtrace is very hard to read if the program wasn't built with
debugging symbols:

CFLAGS="-ggdb -Wall" ./configure \
...

Doing this slows everything down of course..

Hamish