- Optimized the
transition()
function for 4 and 8 directions with user-defined functions. Run time is reduced by 10+%, and the peak memory consumption is massively reduced. - Updated deprecated usage of the Matrix library.
- Added unit tests for the
transition()
function. - Add workaround (fix?) for
pathInc()
code in Overview vignette.
- Maintainer change
- update the file maungawhau
- expanded Description
- Fix transition with Mahalanobis distance method use
x.minus.y <- raster::getValues(x)[adj[,1],] - raster::getValues(x)[adj[,2],]
instead ofx.minus.y <- xy[adj[,1],-1]-xy[adj[,2],-1]
- export method
raster,TransitionLayer-method
- Fix R:devel errors in running the examples
- gdistance builds with roxygen2
- new website and venue to report issues
- a recommended citation is added
- cBind, rBind (deprecated in Matrix package) changed to cbind, rbind
- Changes to reflect publication in JSS
- Bug fixed in AccCost (mode="out"), thanks to Henjo de Knegt
- Changes to vignette based on JSS review
- Final touches for submission to JSS
- Final touches for submission to JSS
- Correction in shorthestPath (bug reported by Sergei Petrov)
- Dependencies and imports reflect new CRAN rules
- Updated to reflect changes in igraph
- Changes in vignette
- Changes in default method pathInc (overlap)
- Class changes to BasicRaster
- Change from igraph0 to igraph 6
- Change in as(x, "transitionMatrix") to speed up transition()
- Update to the new adjacent method in raster
- Further adapting to naming changes in raster ("x" argument)
- Making the same change in gdistance ("x" is the first argument in any function)
- Bug fix in resistanceDistance: uncomment reproject
- Improved documentation of definitions of different distance functions
- Dependency on igraph0 -- to be changed to igraph 0.6 after May 31, 2012
- Removed initialize functions, using prototypes instead
- Bug fix in
transition(transitionFunction="barriers")
- Methods added in
transition()
- Summary functions redefined
- Adapting to changes in raster package (argument for Raster* objects is now always "x")
- adjacencyFromTransition added