diff --git a/articles/stars1.html b/articles/stars1.html index db2e5205..24a05c23 100644 --- a/articles/stars1.html +++ b/articles/stars1.html @@ -596,7 +596,7 @@
## user system elapsed
-## 1.006 0.170 0.692
+## 0.996 0.192 0.695
This takes only around 1 second, since only those pixels are read that can be seen on the plot. If we read the entire image in memory first, as we would do with
@@ -405,12 +405,12 @@Doing this allows for optimizing the order in which operations are
done. As an example, for st_apply
, reading can be done
sequentially over the dimensions over which the function is applied:
## user system elapsed
-## 0.678 0.191 0.373
+## 0.691 0.168 0.367
diff --git a/news/index.html b/news/index.html
index f62d1f84..300e7a37 100644
--- a/news/index.html
+++ b/news/index.html
@@ -59,7 +59,8 @@
add prcomp()
methods for stars
and stars_proxy
objects, working on attributes or last dimension
fix st_as_stars()
method for Spatial
gridded objects; see https://github.com/r-spatial/gstat/issues/123
add prcomp()
methods for stars
and stars_proxy
objects, working on attributes or last dimension
st_rasterize()
with align=TRUE
returns NA
values where there are no data; #668
read_mdim()
reads tables with composity type, returning a data.frame
in that case; #659
st_rotate()
transforms a rotated grid back to a curvilinear grid in unrotated coordinates.