You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is such a great package and its existence makes it so much easier to recommend OSF as a hosting platform for projects.
I'm trying to figure out whether it is possible to read data directly from the OSF storage, specifically raster layers. For instance, if I host a .tif on AWS S3, I can use /vsis3/ and the {terra} package to read the raster metadata without first downloading the whole file. I can then crop it and just download a smaller portion: r = terra::rast(glue::glue('s3://{bucket_name}/{raster_basename})). Is something like this possible with the OSF API, which might then make it a potential hugely valuable feature for {osfr}?
Here's an OSF page for an OSF Storage-hosted .tif in case that's handy for anyone: https://osf.io/kwreq
The text was updated successfully, but these errors were encountered:
An update here-- I recently learned that I could use the /vsicurl/ approach on raster that has a direct http link. I also learned about how to get a direct download link for an OSF id from CenterForOpenScience/osf.io#7020 and CenterForOpenScience/osf.io#8256.
So I'm able to do what I want using:
r <- terra::rast("/vsicurl/https://osf.io/download/kwreq")
r
Note that this also works for vector files, because it is GDAL that implements the /vsicurl/ method:
(this one is pretty big, so might take a bit of time; probably a good example for walking the line between when it makes more sense to download the file locally then read it versus using the vsi approach)
Hi all,
This is such a great package and its existence makes it so much easier to recommend OSF as a hosting platform for projects.
I'm trying to figure out whether it is possible to read data directly from the OSF storage, specifically raster layers. For instance, if I host a .tif on AWS S3, I can use /vsis3/ and the {terra} package to read the raster metadata without first downloading the whole file. I can then crop it and just download a smaller portion:
r = terra::rast(glue::glue('s3://{bucket_name}/{raster_basename}))
. Is something like this possible with the OSF API, which might then make it a potential hugely valuable feature for {osfr}?Here's an OSF page for an OSF Storage-hosted .tif in case that's handy for anyone: https://osf.io/kwreq
The text was updated successfully, but these errors were encountered: