search for: gtiff

Displaying 11 results from an estimated 11 matches for "gtiff".

Did you mean: tiff
2020 Feb 19
2
Pregunta sobre rLandsat
Hola grupo, estoy siguiendo una gu?a de la librer?a rLandsat que me la he descargado de: devtools::install_github("socialcopsdev/rLandsat") Y tras hacer los siguiente (obviamente tengo me he registrado previamente en la api correspondiente): product_id = c("LC08_L1TP_145049_20180301_20180308_01_T1", "LC08_L1TP_145049_20170330_20170414_01_T1",
2020 Feb 20
3
Pregunta sobre rLandsat
Hola Ángel: Yo creo que tendrías que establecer el sistema de coordenadas de referencia de tu objeto raster antes de salvarlo como GTiff. Algo así: crs(r1) <-"+proj=utm +zone=14 +datum=WGS84" Saludos, Marcelino. El 20/02/2020 a las 1:42, Angel Cervantes escribió: > Hola a todos, quisiera pedirles su ayuda. Estoy tratando de crear un raster a partir de una tabla de datos que contiene coordenadas UTM. Determino l...
2018 Mar 28
0
netCDF to GeoTIFF by layer in r
...a source : > C:\FAPSEP_Eucalyptus\FAPSEP\Soil_Weather_data\Agro_IBIS_Eucalipto\VMC21\VMC21.nc > names : Volumetric.water.content.at..33.kPa > z-value : 4.5 > zvar : VMC2 > > > > VMC1<-writeRaster(importnetcdf,filename="file.tiff",format="GTiff",overwrite=TRUE,bylayer=TRUE,suffix="1:4") > #bylayer=TRUE, did not work. > >> VMC1 > class : RasterLayer > dimensions : 16800, 43200, 725760000 (nrow, ncol, ncell) > resolution : 0.00833333, 0.00833333 (x, y) > extent : -180, 179.9998, -56,...
2008 Aug 10
0
possible problem with rgdal
...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] 420 > ncol(a) [1] 660 > dummy = getRasterData(a) > nrow(dummy) [1] 660 > ncol(dummy) [1] 420 > test = matrix(0, nrow=420, ncol=660) > putRasterData(a,test) Error in putRasterData(a,...
2012 Mar 27
1
Rgdal package - get information
...5512.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 > oblique.x 0 > oblique.y 0 > driver GTiff > projection +proj=utm +zone=23 +south +datum=WGS84 +units=m +no_defs > file > /MOD13Q1.A2001049.h13v11.005.2007002215512.250m_16_days_EVI.tif > apparent band summary: > *GDType* Bmin Bmax Bmean Bsd hasNoDataValue NoDataValue > 1 *Int16* -32768 32767 0 0 FAL...
2018 Mar 28
2
Fwd: netCDF to GeoTIFF by layer in r
...um=WGS84 +ellps=WGS84 +towgs84=0,0,0 data source : C:\FAPSEP_Eucalyptus\FAPSEP\Soil_Weather_data\Agro_IBIS_Eucalipto\VMC21\VMC21.nc names : Volumetric.water.content.at..33.kPa z-value : 4.5 zvar : VMC2 VMC1<-writeRaster(importnetcdf,filename="file.tiff",format="GTiff",overwrite=TRUE,bylayer=TRUE,suffix="1:4") #bylayer=TRUE, did not work. > VMC1 class : RasterLayer dimensions : 16800, 43200, 725760000 (nrow, ncol, ncell) resolution : 0.00833333, 0.00833333 (x, y) extent : -180, 179.9998, -56, 83.99995 (xmin, xmax, ymin, ymax...
2007 Sep 05
1
geotiff or tiff files with world files
Hi, I have a matrix of data which i can vizualize as an image - for example. I would like to save this image as a geotiff file or at a tiff file with a world file which holds the projection of my data (ultimately the data represent a map of some sort). I know i can save the data as an ESRI grid, but i am not interested in that. I wonder if anybody knows about any code which will help me do
2013 Mar 21
0
Problems of exporting raster to ArcGIS
...I used function writeRaster{raster} to write this rasterLayer into every format it supports, and ArcGIS respond to them in three different ways, but none of them works. I wonder why it happens and if there is someway to solve this problem? ArcGIS respond type: 1. Show strange values GTiff, HFA 2. Show even values in whole raster IDRISI, ascii, EHdr 3. Cannot recognize files CDF, raster, SAGA, CDF , ENVI Yuanjing Xu PhD. Student of Biodiversity Conservation [[alternative HTML version deleted]]
2010 Oct 06
1
R getting slower until it breaks...
...iff make.tiff<- function(NV=newValues,TT=Type,img=imgRaster,nom){ pixelNDVIMatrix <- calculate_NDVI(TT,img,NV[c(1,2,3)]) newRaster <- raster(pixelNDVIMatrix) NAvalue(newRaster)<-999999 nnom<-nom[NV[4]] writeRaster(newRaster, filename=nnom,datatype="INT1U",format="GTiff",overwrite=FALSE) aaa<-2 } ################################################################################# ## Fonction 2 - Creation de fonction convertissant les coordonnee metrique en coordonnee pixels ##### latlong_to_pixels<- function(Coord, facteur, meterWidth=NULL) { #C...
2007 Sep 06
1
write geotiff with projection - RGDAL package
...y code follows: data.grid <- read.csv(x, header=TRUE) gridded(data.grid) = ~East.m.+North.m. proj4string(data.grid) = CRS("+proj=tmerc +lat_0=0.00000000000 +lon_0=-81.00000000000 +k=0.99960000 +x_0=500000.000000 +y_0=0.0000000 +ellps=GRS80 +units=m") tr <- "e:\\JELA_veg\\test_gtiff\\test.tif" writeGDAL(data.grid["class.pca"], tr) mg3 <- readGDAL(tr) proj4string(mg3) [1] " +proj=utm +zone=17 +ellps=GRS80 +units=m +no_defs" I will really appreciate if anybody can point me in the right dirrection. Thanks, Monica ____________________________...
2011 Aug 26
0
Problem in calling R functions from Matlab
...;> [a b c] = evalR('img <- readGDAL("testimg_p.tif")') a = ?????[] b = ?????0 c = Invoke Error, Dispatch Exception: Object is static; operation not allowed The command works from R prompt: > img <- readGDAL("testimg_p.tif") testimg_p.tif has GDAL driver GTiff and has 280 rows and 272 columns It is giving same error while loading gstat library: >> [a b c] = evalR('library(gstat) ') a =???? [] b =???? 0 c = Invoke Error, Dispatch Exception: Object is static; operation not allowed I guess the error is not related to readGDAL or gstat l...