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.
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.
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.
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.
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.
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.
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.