In .gd_SetProject(object, ...) : NOT UPDATED FOR PROJ >= 6

Hi, i try to export data from files .he5 for Tif.

At the end of the process I get an error: In .gd_SetProject(object, ...) : NOT UPDATED FOR PROJ >= 6

I use the
library (sp)
library (raster)
library (gdalUtils)

the scrip I use is this:

file <- "OMUVBd_20110929.he5"
sds <- get_subdatasets(file)
r <- raster(sds[9])
extent(r) <- c(-180, 180,-90,90)
crs(r) <- "+proj=longlat +datum=WGS84"
r <- flip(r, direction='y')
writeRaster(r, "example.tif")

Appreciate very much who can help!

Welcome! I'm afraid you'll need to supply some more info in order for helpers to be able to understand your problem (this is pretty common — when you're new to this stuff, it's hard to know how much information is enough!).

The best thing would be if you can make your question into a reproducible example (follow the link for instructions and explanations). To include your data, you'll want to follow one of the methods discussed here.

If you try all that and get stuck, here's a fallback option...
  1. Edit your post and add in some of the code you have tried. It's OK it doesn't work! It's really helpful to see what you've been attempting. Be sure to format your code as code (it's hard to read unformatted code, and it can get garbled by the forum software)
  2. Include sample data:
    • If your data set is OK to share, run the following line and paste the output into your post. Again, be sure to format it as code :sparkles:
    dput(head(your_dataframe_name, 10))
    
    • If your data set can't be shared, run this line instead and paste the output into your post (and yes, format as code!) This will still share some information about your data. If it's truly confidential, I'm afraid you'll need to make a fake sample dataset to share.
    str(your_dataframe_name)
    

Hi Bioranita,
It looks like the recent upgrade for raster (v. 3.3-7) may fix this problem:
(https://cran.r-project.org/web/packages/raster/NEWS), although it's hard to test without a copy or link to your data set.

You'll have to compile the raster package by source, or wait until the binaries catch up via install.packages("raster", type = "source").

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.