GHRSST COGs (MURSST)
https://source.coop/repositories/ausantarctic/ghrsst-mur-v2/description
library(terra)
files <- arrow::read_parquet("https://data.source.coop/ausantarctic/ghrsst-mur-v2/ghrsst-mur-v2.parquet")
## it's a STAC catalogue
f <- sprintf("/vsicurl/%s", tail(files$assets$analysed_sst$href, 1))
r <- r <- rast(f)
## need fairly recent terra for this else `project(r, rast(), by_util = TRUE)`
plot(r)
title(substr(basename(f), 1, 8))
## not fast here, could be improved for sure
str(extract(r, vect(cbind(147, c(-45, -55)), type = "l")))
#'data.frame': 1001 obs. of 2 variables:
# $ ID : num 1 1 1 1 1 1 1 1 1 1 ...
# $ 20250315090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1_analysed_sst: num 16.7 16.7 16.7 16.7 16.7 ...
The 'analysed_sst' files are templated by
Strictly we should check the catalogue
To crop with the terra package use crop
or more generally, project (by util is very important for COG)
We can change crs and resolution as desired