The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
First some example trajectories are created in form of Correlated Random Walks (CRWs):
<- lapply(X=seq(1:100), FUN = function(X) {
crws sim.crw.3d(nStep = 100, rTurn = 0.99, rLift = 0.99, meanStep = 0.1)
})plot2d(crws)
Count points per voxel and plot counts as raster stack:
<- do.call("rbind", crws)
points <- extent(c(-10, 10, -10, 10))
extent <- voxelCount(points, extent, xyRes=5, zMin=-10, zMax=10)
ud plotRaster(ud)
By calculating Chi maps, the over- and underrepresentation of points in the voxel space can be interpreted statistically:
<- chiMaps(ud)
chi plotRaster(chi, centerColorBar=TRUE)
The voxel dataCube of type rasterStack can be exported as Tiff image sequence. Image sequences are a common structure to represent voxel data and most of the specific software to visualize voxel data is able to read it (e.g. blender)
saveImageSlices(ud, filename = "utilization-distribution", dir="folder/path")
saveImageSlices(chi, filename = "chi-map-cube", dir="folder/path")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.