-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
r.connectivity.network: replace R with Python #1109
base: grass8
Are you sure you want to change the base?
Conversation
|
||
""" | ||
MODULE: r.connectivity.network | ||
AUTHOR(S): Stefan Blumentrath <stefan dot blumentrath at nina dot no> | ||
PURPOSE: Compute connectivity measures for a set of habitat patches | ||
based on graph-theory (using the igraph-package in R). | ||
based on graph-theory (usig the igraph-package in R). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
based on graph-theory (usig the igraph-package in R). | |
based on graph-theory (using the igraph-package in R). |
@@ -17,7 +16,7 @@ | |||
|
|||
r.connectivity.network is the 2nd tool of the | |||
r.connectivity.* toolchain and performs the (core) network | |||
analysis (using the igraph-package in R) on the network | |||
analysis (usig the igraph-package in R) on the network |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
analysis (usig the igraph-package in R) on the network | |
analysis (using the igraph-package in R) on the network |
in a plot showing an overview over number of connections, | ||
number of components and and the size of the largest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in a plot showing an overview over number of connections, | |
number of components and and the size of the largest | |
in a plot showing an overview over the number of connections, | |
number of components and the size of the largest |
" (use PYTHONPATH variable)." | ||
) | ||
gscript.fatal( | ||
"Could not import igraph library! To install it run:", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Could not import igraph library! To install it run:", | |
"Could not import igraph library! To install it run: ", |
This is a first start to replace the use of R with Python