Alexys Rodriguez

Results 29 comments of Alexys Rodriguez

Thank you!. Nice Plot!. I think an `sf` version of the `stars `object can be useful to get the min using a kind of `apply `function. I will try!

@kadyb how to convert `terra `and `exactextractr` to `sf`. I am trying with `st_as_sf()` but I need a simple geometry column present in those datasets (class data.frame).

Looking into the code of netCDF read/write driver found [here](https://git.earthdata.nasa.gov/projects/GEE/repos/gdal-enhancements-for-esdis/raw/gdal-current/frmts/netcdf/netcdfdataset.cpp?at=fb73d503aff03cde75553f86a77f5e8624a0216b), it is supposed that changing the variable `GDAL_MAX_BAND_COUNT` is the solution. But after changing it the issue persists. The strange...

I have updated: - R: `installr::updateR()` - rgdal: `install.packages("rgdal")` - stars: `remotes::install_github("r-spatial/stars")` But the problem persists! ``` r library(stars) #> Loading required package: abind #> Loading required package: sf #>...

Thank you!. Interesting new development. The main reason here to use `proxy = TRUE` in `read_stars` is that my original netCDF file is huge, so I want to avoid loading...

I am trying to use the updated version of `read_ncdf `(thanks to @dblodgett-usgs), but the object `mync_proxy `is not of class `stars_proxy ` (`proxy=TRUE` is not working). How can I...

That makes sense. But, I am wondering if there is a way to **test** a development version. I will read a little bit. Thank you!

Wow! It is working now!. Great job. Lets way the first version (production environment). Thank you!! `class(mync_proxy)` `[1] "nc_proxy" "stars_proxy" "stars" `

I complemented the `LD_LIBRARY_PATH` inside `.bashrc`: ``` export LD_LIBRARY_PATH="/home/myuser/sqlite/usr/local/lib:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH="~/googletest/usr/local/lib64:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH="/home/myuser/proj940/lib64:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH="/home/myuser/geos3121/lib64:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH="/home/myuser/gdal385/lib64:$LD_LIBRARY_PATH" ``` After running ``` remotes::install_github("r-spatial/sf", configure.args = "--with-gdal-config=/home/myuser/gdal385/bin/gdal-config --with-geos-config=/home/myuser/geos3121/bin/geos-config --with-proj-include=/home/myuser/proj940/include/ --with-proj-lib=/home/myuser/proj940/lib64/") ``` the...

This person tried setting the variable inside R with some success: [ https://github.com/r-spatial/sf/issues/844#issuecomment-654477840](https://github.com/r-spatial/sf/issues/%20https:/github.com/r-spatial/sf/issues/844#issuecomment-654477840) I had to add some additional details, because after implementing his solution, I got the next error:...