Skip to content

Commit

Permalink
closes #64
Browse files Browse the repository at this point in the history
  • Loading branch information
edzer committed Sep 21, 2023
1 parent fafa758 commit 0136b6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _posts/2023-09-21-stars-parallel.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ Since this data does not fit in memory, we have to load it as a proxy
(actually, we will only load the metadata describing these rasters). To
do this, we use the `read_stars()` function with the arguments
`proxy = TRUE` and `along = 3`. This second argument will cause the
bands (layers) to be combined into a three-dimensional matrix:
\[*l**o**n**g**i**t**u**d**e**l**a**t**i**t**u**d**e**s**p**e**c**t**r**a**l* *b**a**n**d*\].
bands (layers) to be combined into a three-dimensional array:
[longitude, latitude, spectral band].

rasters = read_stars(files, proxy = TRUE, along = 3)

Expand Down
2 changes: 1 addition & 1 deletion _rmd/2023-09-21-stars-parallel.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Since this data does not fit in memory, we have to load it as a proxy (actually,
we will only load the metadata describing these rasters). To do this, we use the
`read_stars()` function with the arguments `proxy = TRUE` and `along = 3`. This
second argument will cause the bands (layers) to be combined into a
three-dimensional matrix: $[longitude, \ latitude, \ spectral \ band]$.
three-dimensional array: [longitude, latitude, spectral band].

```{r}
rasters = read_stars(files, proxy = TRUE, along = 3)
Expand Down

0 comments on commit 0136b6c

Please sign in to comment.