[GRASS-user] GRASS at the 12th International Conference on Hydroinformatics

Hello,

This message to let you know that I'll give a talk called "A GRASS GIS
module for 2D superficial flow simulations" at the 12th International
Conference on Hydroinformatics that will be held from 21 to 26 of
august in Incheon, Korea. The goal is basically to present Itzï
(https://www.itzi.org/), a new superficial flow model that uses GRASS
as a back-end.

If any other GRASS user will be present at this event, I'll be glad to meet.
Of course, I'll be happy if anyone give a try at the software and give
me some feed back.

Cheers,
Laurent

On Fri, Aug 12, 2016 at 7:09 PM, Laurent C. <lrntct@gmail.com> wrote:

Hello,

This message to let you know that I'll give a talk called "A GRASS GIS
module for 2D superficial flow simulations" at the 12th International
Conference on Hydroinformatics that will be held from 21 to 26 of
august in Incheon, Korea. The goal is basically to present Itzï
(https://www.itzi.org/), a new superficial flow model that uses GRASS
as a back-end.

If any other GRASS user will be present at this event, I'll be glad to meet.
Of course, I'll be happy if anyone give a try at the software and give
me some feed back.

This looks great. I tried to follow your example in documentation and
it worked, except for a small inconsistency in map names:

v.to.rast input=watershed_out type=point output=bcval use=val value=0
and in the config file you have:

bcval = bcvalue@PERMANENT

(should be bcval)

I will probably test this more later. We should also consider if there
is a way we could distribute it through official addons.

Thank you,

Anna

Cheers,
Laurent
_______________________________________________
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user

Hi Laurent,

Not sure what I’m doing wrong; I followed the installation using:

pip install itzi

which placed itzi here…

/home/teaiii/.local/lib/python2.7/site-packages/itzi

Running: itzi run parameter_file_name ... gives me this...

GRASS 7.0.3 (nc_spm_08_grass7):~/grass/data > itzi run test
itzi: command not found

I guess ``itzi was not installed where it should go or is my PATH not right?

Tom

···

On Fri, Aug 12, 2016 at 7:09 PM, Laurent C. <lrntct@gmail.com> wrote:

Hello,

This message to let you know that I’ll give a talk called “A GRASS GIS
module for 2D superficial flow simulations” at the 12th International
Conference on Hydroinformatics that will be held from 21 to 26 of
august in Incheon, Korea. The goal is basically to present Itzï
(https://www.itzi.org/), a new superficial flow model that uses GRASS
as a back-end.

If any other GRASS user will be present at this event, I’ll be glad to meet.
Of course, I’ll be happy if anyone give a try at the software and give
me some feed back.

Cheers,
Laurent


grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user

Thomas E Adams, III
1724 Sage Lane
Blacksburg, VA 24060

1 (513) 739-9512 (cell)

2016-08-12 22:21 GMT-05:00 Anna Petrášová <kratochanna@gmail.com>:

On Fri, Aug 12, 2016 at 7:09 PM, Laurent C. <lrntct@gmail.com> wrote:

Hello,

This message to let you know that I'll give a talk called "A GRASS GIS
module for 2D superficial flow simulations" at the 12th International
Conference on Hydroinformatics that will be held from 21 to 26 of
august in Incheon, Korea. The goal is basically to present Itzï
(https://www.itzi.org/), a new superficial flow model that uses GRASS
as a back-end.

If any other GRASS user will be present at this event, I'll be glad to meet.
Of course, I'll be happy if anyone give a try at the software and give
me some feed back.

This looks great. I tried to follow your example in documentation and
it worked, except for a small inconsistency in map names:

v.to.rast input=watershed_out type=point output=bcval use=val value=0
and in the config file you have:

bcval = bcvalue@PERMANENT

(should be bcval)

Thanks. I've corrected the manual.

I will probably test this more later. We should also consider if there
is a way we could distribute it through official addons.

I've tried but never manage to make it work. See:
https://lists.osgeo.org/pipermail/grass-dev/2016-March/079481.html
https://trac.osgeo.org/grass/ticket/2480
https://trac.osgeo.org/grass/ticket/2968

So I finally decided to make it a Python package and drop g.parser for argparse.
If anyone want to give it another try, It's OK for me.

Laurent

2016-08-12 23:28 GMT-05:00 Thomas Adams <tea3rd@gmail.com>:

Hi Laurent,

Not sure what I'm doing wrong; I followed the installation using:

pip install itzi

which placed itzi here...

/home/teaiii/.local/lib/python2.7/site-packages/itzi

Running: itzi run parameter_file_name ... gives me this...

GRASS 7.0.3 (nc_spm_08_grass7):~/grass/data > itzi run test
itzi: command not found

I guess itzi was not installed where it should go or is my PATH not right?

Tom

Tom,

It looks like a PATH problem. For some reason, pip is not adding the
local bin directory to the PATH when installing with --user, at least
in Ubuntu.
So you might need to add $HOME/.local/bin to your PATH.

Laurent

On Fri, Aug 12, 2016 at 7:09 PM, Laurent C. <lrntct@gmail.com> wrote:

Hello,

This message to let you know that I'll give a talk called "A GRASS GIS
module for 2D superficial flow simulations" at the 12th International
Conference on Hydroinformatics that will be held from 21 to 26 of
august in Incheon, Korea. The goal is basically to present Itzï
(https://www.itzi.org/), a new superficial flow model that uses GRASS
as a back-end.

If any other GRASS user will be present at this event, I'll be glad to
meet.
Of course, I'll be happy if anyone give a try at the software and give
me some feed back.

Cheers,
Laurent
_______________________________________________
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user

--
Thomas E Adams, III
1724 Sage Lane
Blacksburg, VA 24060

1 (513) 739-9512 (cell)

On Sat, Aug 13, 2016 at 1:09 PM, Laurent C. <lrntct@gmail.com> wrote:

I've tried but never manage to make it work. See:
https://lists.osgeo.org/pipermail/grass-dev/2016-March/079481.html
https://trac.osgeo.org/grass/ticket/2480
https://trac.osgeo.org/grass/ticket/2968

So I finally decided to make it a Python package and drop g.parser for
argparse.

Hi Laurent,

you can actually still use GRASS parser even if you are not using
g.extension. The only condition for GRASS parser to work is that you script
is running inside GRASS session. You can even use both GRASS parser and
your current mechanism if you have some way of distinguishing the command
lines from each other and than calling the proper set of functions.

Vaclav

2016-08-16 13:30 GMT-05:00 Vaclav Petras <wenzeslaus@gmail.com>:

On Sat, Aug 13, 2016 at 1:09 PM, Laurent C. <lrntct@gmail.com> wrote:

I've tried but never manage to make it work. See:
https://lists.osgeo.org/pipermail/grass-dev/2016-March/079481.html
https://trac.osgeo.org/grass/ticket/2480
https://trac.osgeo.org/grass/ticket/2968

So I finally decided to make it a Python package and drop g.parser for
argparse.

Hi Laurent,

you can actually still use GRASS parser even if you are not using
g.extension. The only condition for GRASS parser to work is that you script
is running inside GRASS session. You can even use both GRASS parser and your
current mechanism if you have some way of distinguishing the command lines
from each other and than calling the proper set of functions.

Vaclav

Hi Vaclav,

I know. But since the module was not compiling, the GUI was not
working, so the main advantage of using g.parser over argparse was
gone.

Laurent

On Tue, Aug 16, 2016 at 3:43 PM, Laurent C. <lrntct@gmail.com> wrote:

I know. But since the module was not compiling, the GUI was not
working, so the main advantage of using g.parser over argparse was
gone.

That's right for 7.0, but version 7.2 should newly give you GUI even
without compilation as long as the script is executable. I hope this helps.

https://trac.osgeo.org/grass/ticket/2133