我们在光栅中只有12个离散值,因此我只需要12个颜色。有没有办法不将比例尺显示为连续比例,而是用水平图显示离散比例?因此,每个值对应一个colore并准确显示栅格中的数字。例如,我的值为1.2,但我没有在图例(比例)中看到它。
library(rasterVis)
r <- raster(nrows=4, ncols=3); r <- setValues(r, 1:ncell(r))
r[2,3]=9.5;r[1,3]=4.5;r[1,1]=1.2;levelplot(r)
答案 0 :(得分:2)
rasterVis 的维护者OscarPerpiñán撰写了一篇关于如何display categorial data使用func tabBarController(tabBarController: UITabBarController, didSelectViewController viewController: UIViewController) {
// Allows scrolling to top on second tab bar click
if (viewController.isKindOfClass(CustomNavigationBarClass) && tabBarController.selectedIndex == 0) {
if (viewControllerRef!.canScrollToTop) {
viewControllerRef!.scrollToTop()
}
}
}
的精彩教程。只需按如下方式调整代码即可。
pos = Vector3.Lerp(front_sphere_pos, rear_sphere_pos, .5f);
orientation = Quaternion.LookRotation(front_sphere_pos - rear_sphere_pos);