下午好;
我目前正在使用找到的.grib
和.grib2
文件格式here。我想在R中分析这些数据并通过使用 rgdal 包来“我应该”能够。我跑的时候:
readGDAL("test.grib2")
我收到以下错误:
dec_jpeg2000: Unable to open JPEG2000 image within GRIB file.
Is the JPEG2000 driver available?test.grib2 has GDAL driver GRIB
and has 751 rows and 1500 columns
Error in validityMethod(as(object, superClass)) :
Geographical CRS given to non-conformant data: 539.88 -90.12 90.12
这让我相信JPEG200驱动程序是我的问题,它不会出现在gdalDrivers()
中,我很好奇是否有办法手动安装此驱动程序。
在the GDAL site上注意到JPEG2000驱动程序依赖于libjasper
,并且已下载到源驱动程序文件。如何将这些驱动程序合并到我的rgdal软件包中以供使用?
干杯