[GRASS-user] Invitation: Virtual toast for GRASS GIS 40th birthday
Dear all, Our beloved GRASS GIS becomes 40 years old! Let's meet this *Saturday July 29th at 17:00 UTC* for a virtual toast and celebration 🎂🍻🎉 Some local times here: https://www.timeanddate.com/worldclock/meetingdetails.html?year=2023&month=7&day=29&hour=17&min=0&sec=0&p1=485&p2=207&p3=37&p4=25&p5=204&p6=197 . I'll share a link here shortly before the meeting. See you soon! Vero -- Dra. Verónica Andreo Investigadora Asistente de CONICET Instituto Gulich (CONAE - UNC) Centro Espacial Teófilo Tabanera (CETT) Falda del Cañete - Córdoba, Argentina +54 3547 40 int. 1153 https://veroandreo.gitlab.io/ ___ grass-user mailing list grass-user@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/grass-user
Re: [GRASS-user] v.to.rast -d segmentation fault Re: Surfaces with faults
And at the end I found the solutions: after a v.to.rast at the desired resolution I can choose the line width with r.buffer and at the end I can use v.surf.rst, with raster line mask > v.surf.rst --overwrite input=fosso_punti zcolumn=z elevation=fosso_dem_rst mask=line3d_rast smooth_column=vdop segmax=60 dmin=0.2 dmax=5 !!! Il giorno mar, 25/07/2023 alle 06.17 +0200, bonushenricus ha scritto: > Hello > the problem isn't in my ASCII file or in v.in.lines > but a bug in v.to.rast, with the -d parameter. > I used gdb > > Thread 1 "v.to.rast" received signal SIGSEGV, Segmentation fault. > > (gdb) bt > > #0 0x in ?? () > > #1 0x77ef7091 in G_plot_point () > from /usr/local/grass83/lib/libgrass_gis.8.3.so > > #2 0x8d46 in do_lines () > > #3 0xabc6 in vect_to_rast () > > #4 0x7ad6 in main () > > (gdb) > > > > Il giorno lun, 24/07/2023 alle 17.59 +0200, bonushenricus ha scritto: > > Hello > > I've just tried with the solution of this thread > > https://www.mail-archive.com/grass-user@lists.osgeo.org/msg40640.html > > so > > > v.in.lines -z --overwrite input=fosso.dat output=fosso_linea / > > > separator=comma > > > g.region vector=fosso_linea res=0.2 > > > v.split input=fosso_linea output=fosso_linea_split length=0.2 > > > v.to.points -i input=fosso_linea_split output=fosso_punti > > > v.to.rast -d input=fosso_punti type=point output=fosso_dem use=z > > but the result is > > > Command ended with non-zero return code -11 (0 sec) > > > > I believe there was something wrong in v.in.lines or in my ASCII > > file: > > the vector line hasn't attribute > > > > Il giorno lun, 24/07/2023 alle 16.44 +0200, bonushenricus ha > > scritto: > > > Hello > > > I would like to use the procedure described in "Open Source GIS: > > > A > > > GRASS GIS Approach" second edition page 191 "7.3.5 Surfaces with > > > faults". > > > I have a survey of points. Some points are two ditches. I have > > > run > > > a > > > v.surf.rst with the survey points without the ditch. > > > Attached is the ascii file of the ditch points (EPSG:32632) > > > I have therefore operated as follows: > > > > v.in.lines -z --overwrite input=fosso.dat output=fosso_linea / > > > > separator=comma > > > > g.region vector=fosso_linea res=0.2 > > > > v.to.rast -d --overwrite input=fosso_linea type=line > > > > output=fosso > > > > / > > > > use=z > > > > v.surf.rst --overwrite segmax=60 npmin=100 dmin=1 dmax=6 / > > > > input=fosso_linea elevation=fosso_dem mask=fosso > > > the result is with no_data > > > > > > Some suggestions? > > > -- ___ grass-user mailing list grass-user@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/grass-user
Re: [GRASS-user] v.to.rast -d segmentation fault Re: Surfaces with faults
Almost eureka spline with tension only for point of the ditch is possible with r.resample.rst > r.resamp.rst --overwrite input=fosso_punti_rast@granello ew_res=0.1 ns_res=0.1 elevation=fosso_dem_rst@granello overlap=2 tension=40. but the result in width of the line is too big and also the profile is with "terraces" Il giorno mar, 25/07/2023 alle 08.33 +0300, Maris Nartiss ha scritto: > Please provide your input data and computational region settings. I > was not able to reproduce the issue with my data. > > Māris. > > otrd., 2023. g. 25. jūl., plkst. 07:17 — lietotājs bonushenricus > () rakstīja: > > > > Hello > > the problem isn't in my ASCII file or in v.in.lines > > but a bug in v.to.rast, with the -d parameter. > > I used gdb > > > Thread 1 "v.to.rast" received signal SIGSEGV, Segmentation fault. > > > (gdb) bt > > > #0 0x in ?? () > > > #1 0x77ef7091 in G_plot_point () > > from /usr/local/grass83/lib/libgrass_gis.8.3.so > > > #2 0x8d46 in do_lines () > > > #3 0xabc6 in vect_to_rast () > > > #4 0x7ad6 in main () > > > (gdb) > > > > > > > > Il giorno lun, 24/07/2023 alle 17.59 +0200, bonushenricus ha > > scritto: > > > Hello > > > I've just tried with the solution of this thread > > > https://www.mail-archive.com/grass-user@lists.osgeo.org/msg40640.html > > > so > > > > v.in.lines -z --overwrite input=fosso.dat output=fosso_linea / > > > > separator=comma > > > > g.region vector=fosso_linea res=0.2 > > > > v.split input=fosso_linea output=fosso_linea_split length=0.2 > > > > v.to.points -i input=fosso_linea_split output=fosso_punti > > > > v.to.rast -d input=fosso_punti type=point output=fosso_dem > > > > use=z > > > but the result is > > > > Command ended with non-zero return code -11 (0 sec) > > > > > > I believe there was something wrong in v.in.lines or in my ASCII > > > file: > > > the vector line hasn't attribute > > > > > > Il giorno lun, 24/07/2023 alle 16.44 +0200, bonushenricus ha > > > scritto: > > > > Hello > > > > I would like to use the procedure described in "Open Source > > > > GIS: A > > > > GRASS GIS Approach" second edition page 191 "7.3.5 Surfaces > > > > with > > > > faults". > > > > I have a survey of points. Some points are two ditches. I have > > > > run > > > > a > > > > v.surf.rst with the survey points without the ditch. > > > > Attached is the ascii file of the ditch points (EPSG:32632) > > > > I have therefore operated as follows: > > > > > v.in.lines -z --overwrite input=fosso.dat output=fosso_linea > > > > > / > > > > > separator=comma > > > > > g.region vector=fosso_linea res=0.2 > > > > > v.to.rast -d --overwrite input=fosso_linea type=line > > > > > output=fosso > > > > > / > > > > > use=z > > > > > v.surf.rst --overwrite segmax=60 npmin=100 dmin=1 dmax=6 / > > > > > input=fosso_linea elevation=fosso_dem mask=fosso > > > > the result is with no_data > > > > > > > > Some suggestions? > > > > -- > > ___ > > grass-user mailing list > > grass-user@lists.osgeo.org > > https://lists.osgeo.org/mailman/listinfo/grass-user ___ grass-user mailing list grass-user@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/grass-user