-
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.distance bugfix #1091
base: grass8
Are you sure you want to change the base?
Conversation
Bugfix resulting in error when using -p flag Correction in example on manual page
Hi, @ecodiv and sorry for the inconvenience. I do have a major update of the module that includes parallel processing. However, when testing my update again, I discovered a bug in |
I'm having trouble getting rpy2 to work on my computer so I was just looking into how difficult it would be to replace the R part in the second module with Python. Is that something which you are (still) considering to do as well? |
Yes, The R implementation is buggy and not as performant as I wish it would be. I do have a partial replacement of R with Python for |
Thanks, that would be great. |
<li>an edge-map (connections between patches) and a</li> | ||
<li>vertex-map (centroid representations of the patches).</li> |
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.
<li>an edge-map (connections between patches) and a</li> | |
<li>vertex-map (centroid representations of the patches).</li> | |
<li>an edge-map (connections between patches) and,</li> | |
<li>a vertex-map (centroid representations of the patches).</li> |
In addition, <em>r.connectivity.distance</em> outputs a cost distance | ||
raster map for every input area which later on are used in | ||
<em>r.connectivity.corridors</em> (together with output from |
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 addition, <em>r.connectivity.distance</em> outputs a cost distance | |
raster map for every input area which later on are used in | |
<em>r.connectivity.corridors</em> (together with output from | |
In addition, <em>r.connectivity.distance</em> outputs a cost distance | |
raster map for every input area. These are used later on in | |
<em>r.connectivity.corridors</em> (together with the output of |
@ninsbl how far are you with this? If you need somebody to test things, let me know. |
question: can
from osgeo import gdal, osr, ogr
be replaced byfrom osgeo import ogr
? The gdal and osr do not seem to be used?