Re: [GRASS-user] Export raster to PostGIS

2022-08-26 Thread Maris Nartiss
As r.out.gdal uses GDAL library, it is bound to GDAL limitations. According to the GDAL PG documentation, PG rasters are read-only: https://gdal.org/drivers/raster/postgisraster.html#raster-postgisraster Thus you can read but can not write PG rasters with GDAL. Māris. piektd., 2022. g. 26. aug.,

Re: [GRASS-user] [GRASS-dev] Fwd: [OSGeo-Discuss] FOSS4G Community Sprint 2022

2022-08-26 Thread Markus Neteler
Hi all, Greetings from Florence! On Thu, Aug 25, 2022 at 10:24 AM Wolf Bergenheim wrote: > > Hello all, > > For the FOSS4G community sprint we have a sign up sheet here. > > I'm not there physically, but I'd still love to work together on the weekend. > I'm planning on working more on the

Re: [GRASS-user] Running r-grass examples when building a R package

2022-08-26 Thread Stefan Blumentrath
Hi Bernardo, Seems like GRASS GIS isn`t installed on the CI VM. Please see: https://github.com/NINAnor/oneimpact/pulls You may add UbuntuGIS PPAs if you want other versions than shipped by plain Ubuntu. Cheers Stefan From: grass-user On Behalf Of Bernardo Santos via grass-user Sent: fredag

[GRASS-user] Running r-grass examples when building a R package

2022-08-26 Thread Bernardo Santos via grass-user
Dear all, I am building a R package and some of the functions use rgrass to connect to a GRASS project and run thingfs within GRASS.I have now set up a webpage for the package using pkgdown in integrated to Github actions. This means when I push new commits all the examples of R functions are

[GRASS-user] Export raster to PostGIS

2022-08-26 Thread Asim via grass-user
Hello Is it possible to export a raster map created using r.water.outlet to PostGIS in GRASS 78?  The documentation indicates using r.out.gdal with PostGISRaster as format. The command I'm trying is the following:    r.out.gdal input=mywatershed format=PostGISRaster output=mywatershed