search for: gdalinfo

Displaying 10 results from an estimated 10 matches for "gdalinfo".

2012 Mar 27
1
Rgdal package - get information
> > Hi, > > I used > GDALinfo("MOD13Q1.A2001049.h13v11.005.2007002215512.250m_16_days_EVI.tif") and > got the results: > > rows 10 > columns 11 > bands 1 > origin.x 150701.4 > origin.y 7744897 > res.x 250 > res.y 250 > ysign -1 > obliqu...
2008 Aug 10
0
possible problem with rgdal
Hello all, I recently installed rgdal 0.5.24-1 (kyngchaos framework) and I am having trouble making sense of the row, col information provided. > a = new("GDALDataset", "dummy.tif") > GDALinfo("dummy.tif") rows 420 columns 660 bands 1 ll.x -55.5 ll.y -14.5 res.x 0.008333334 res.y 0.008333334 oblique.x 0 oblique.y 0 driver GTiff projection +proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs file dummy.tif > nrow(a) [1]...
2013 Jan 14
4
How to open grib file in R?
I have this https://echange-fichiers.inra.fr/get?k=6TdTdezNeZwAqJtpwVm grib file which is a regular lat-lon 0.25x0.25 degrees and contains 4 fields . I tried to open it using : grib <- readGDAL("C:\\Users\\aalyaari\\Desktop\\Vol_025_H14_2010060700.grib") but I got this error: C:\Users\aalyaari\Desktop\Vol_025_H14_2010060700.grib has GDAL driver GRIB and has 721 rows and
2015 Oct 04
2
Conditional importFrom (roxygen?)
...9;m a bit confused how I should "properly" importFrom a function like this so it doesn't cause a build failure, but I don't get a note in my R CMD CHECK if I DON'T have it: gdal_setInstallation : correctPath: no visible global function definition for 'shortPathName' gdalinfo: no visible global function definition for 'glob2rx' gdallocationinfo: no visible global function definition for 'write.table' gdaltransform: no visible global function definition for 'write.table' get_subdatasets: no visible global function definition for 'glob2rx'...
2008 Nov 05
1
Using RGDAL to "copy" header information...
...GDAL supports -- the code below just "copies" the image one line at a time: ### library(rgdal) infile='elev' outfile_base='testout' outfile_ext='.bil' outfile=paste(outfile_base,outfile_ext,sep='') outcon <- file(outfile, "wb") infile_info=GDALinfo(infile) nl=infile_info[[1]] ns=infile_info[[2]] for (row in 1:nl) { templine <- readGDAL(infile,region.dim=c(1,ns),offset=c(row-1,0)) writeBin(templine[[1]], outcon,size=4) } close(outcon) # Below doesn't work # writeGDAL(templine,outfile_base,drivername='EHdr',type="Fl...
2015 Oct 04
0
Conditional importFrom (roxygen?)
...d "properly" importFrom a function like this so > it doesn't cause a build failure, but I don't get a note in my R CMD CHECK > if I DON'T have it: > > gdal_setInstallation : correctPath: no visible global function > definition for 'shortPathName' > gdalinfo: no visible global function definition for 'glob2rx' > gdallocationinfo: no visible global function definition for > 'write.table' > gdaltransform: no visible global function definition for 'write.table' > get_subdatasets: no visible global function definition...
2006 Mar 28
1
opendap/dods data retrieval
Hello, I was wondering if there has been any progress in developing a package for accessing opendap/dods data using R. I see from the list archive that there was some initial work done on this. Thanks, Paul Brewin Paul E Brewin (PhD) Center for Research in Biological Systems University of California San Diego 9500 Gilman Drive MC 0505 La Jolla CA, 92093-0505 USA Ph: 858-822-0871 Fax:
2008 Jan 11
2
clipping a large image on R
Dear all, I have a so large image (43,000 x 18,000 pixels) and I need clip this image with a smallest one (1000x1000 pixels). I can read the second image using rgdal package. But the first image canĀ“t be read on my system because if memory limitation (I have about 2GB availabe). So I would like hear from you if anyone have some suggestin in this regards. I have also ArcGis 8.6 ans Erdas 8.3
2006 Sep 07
1
rgdal on a Mac
I am trying to install the rgdal package on my Mac OS X 3.9. I downloaded and installed the GDAL libraries from Fink and then tried to install rgdal and got the following message. I tried to determine if the GDAL libraries were in my path but I'm not sure how to do that. Any ideas? Thanks. trying URL 'http://www.biometrics.mtu.edu/CRAN/src/contrib/rgdal_0.4-10.tar.gz'
2010 Aug 05
1
using grib files in R
I am not new to R, but I am new to .grib files. I am downloading some climate data and I would like to analyze it in R. R has a nice netcdf package, but I don?t see any package available to deal specifically with grib files. I see a few posts from other people using grib files in R. However, I was unclear if they used grib files in a different software program and then imported the data