diff --git a/articles/stars2.html b/articles/stars2.html index a0a9775e..d334dd36 100644 --- a/articles/stars2.html +++ b/articles/stars2.html @@ -282,7 +282,7 @@
## user system elapsed
-## 0.988 0.182 0.682
+## 0.992 0.158 0.664
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
@@ -390,12 +390,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.709 0.166 0.380
+## 0.697 0.171 0.389
diff --git a/articles/stars5.html b/articles/stars5.html
index 06b8626e..13df6420 100644
--- a/articles/stars5.html
+++ b/articles/stars5.html
@@ -90,9 +90,9 @@ sf
vector o
## stars object with 2 dimensions and 1 attribute
## attribute(s):
## Min. 1st Qu. Median Mean 3rd Qu.
-## file2b7969044047 [1/km^2] 0.2545072 1.225631 1.932222 3.345918 3.825745
+## file28283dba2a29 [1/km^2] 0.2545072 1.225631 1.932222 3.345918 3.825745
## Max. NA's
-## file2b7969044047 [1/km^2] 21.24828 4808
+## file28283dba2a29 [1/km^2] 21.24828 4808
## dimension(s):
## from to offset delta refsys point x/y
## x 1 162 123829 5000 NAD83 / North Carolina FALSE [x]
@@ -261,9 +261,9 @@ Ops.stars()
(math ops) now also recycle arrays in the first argument; #718
st_extract()
if used with GDAL 3.10.0 uses InterpolateAtPoints, allowing for cubic and cubicspline interpolators (requiring sf >= 1.0-19).
Ops.stars()
(math ops) now also recycle arrays in the first argument; #718
c.stars()
verifies semantic equivalence of objects’ CRS; #703
initial support for read_mdim()
to work with proxy = TRUE
; #659