Re: [R-sig-Geo] PostGIS merge and subset selection

2012-02-07 Thread Barry Rowlingson
On Tue, Feb 7, 2012 at 6:45 AM, Edzer Pebesma edzer.pebe...@uni-muenster.de wrote: Vivien, the following might give you some pointers: library(spacetime) vignette(stpg) edit(vignette(stpg)) to run the postGIS thing, you have to uncomment all the eval=FALSE sections. Not sure if Edzer's

[R-sig-Geo] dismo::gmap: can not create a RasterLayer from this file

2012-02-07 Thread Mathieu Rajerison
Hi, I'm trying to use gmap function from dismo. I apply the example but it gives me an error message 'Cannot create a RasterLayer object from this file.' library(dismo) e = extent( -121.9531 , -120.3897 , 35.36 , 36.61956 ) r = gmap(e) Erreur dans .rasterObjectFromFile(x, band = band,

Re: [R-sig-Geo] Building Windows binary of rgdal package to include PGeo driver for reading ESRI personal geodatabases.

2012-02-07 Thread Michael Denslow
Hi Roger and Josh, On Wed, Feb 1, 2012 at 3:04 PM, Obrien, Josh jobr...@ucdavis.edu wrote: On Tue, 31 Jan 2012, Obrien, Josh wrote: I am a long-time R user, currently working with a team of ArcGIS users. The GIS guys would like to be able pass me data in the form of ESRI personal

Re: [R-sig-Geo] Building Windows binary of rgdal package to include PGeo driver for reading ESRI personal geodatabases.

2012-02-07 Thread Barry Rowlingson
On Tue, Feb 7, 2012 at 1:24 PM, Michael Denslow michael.dens...@gmail.com wrote: Sorry to join this discuss late, but I have also been curious about reading ESRI geodatabases since I teach with ArcGIS and work with rgdal for my own research purposes. I have two questions that I hope are not

[R-sig-Geo] find in which polygon each point-coordinate belongs to

2012-02-07 Thread dimitrisr
hi i am new to these stuff so bear with me , i have a shapefile of Europe and a dataset of point coordinates that has way too many mistakes(a csv file of 10.000 lines/point coordinates written in this way) country,longitude,latitude Italy,213,4353 Italy,234,3463 Italy,234,43643 Germany,325,453

[R-sig-Geo] raster package memory management

2012-02-07 Thread Oliver Soong
Hi, I'm putting together a package to do some analysis that uses the great features provided by raster package. I'm anticipating reading a large number of rasters (tens of thousands in my test case), lined up into a single rasterStack. At any given time, I only need to operate on a few layers,

[R-sig-Geo] Help with Era_Interim Data

2012-02-07 Thread Idowu, Oluseun S. (UMKC-Student)
Dear Users, I'm new learning R and I have several Era_Interim datasets (from ECMWF Global re-analysis data) to analyze. Any help with a guide script will be appreciated. Thanks Sam [[alternative HTML version deleted]] ___ R-sig-Geo mailing

[R-sig-Geo] raster package, values pixel order

2012-02-07 Thread Oliver Soong
Can somebody confirm whether raster::values(x, format = ) always starts in the top-left of the image and moves left-to-right then top-to-bottom? I'm really hoping it doesn't depend on the pixel order of the underlying raster. Thanks, Oliver ___

Re: [R-sig-Geo] raster package, values pixel order

2012-02-07 Thread Roman Luštrik
From the package vignette (try vignette(Raster)): The cell number is an important concept in the raster package. Raster data can be thought of as a matrix, but in a RasterLayer it is more commonly 19 treated as a vector. *Cells are numbered from the upper left cell to the upper* *right cell and

Re: [R-sig-Geo] raster package, values pixel order

2012-02-07 Thread Oliver Soong
Ah, thanks for pointing out the definition of cell order. The documentation for raster::values doesn't specify that values(rasterLayer, format = ) always returns values in cell order, nor does it state that values(rasterStack) or values (rasterBrick) returns rows in cell order, so I wanted to

[R-sig-Geo] Forecasting of sky images

2012-02-07 Thread Ross Bowden
Hello everyone. I'm designing a system to forecast the availability of solar radiation for photovoltaic power stations. The forecasting system will use regularly-taken images of the sky, each of which is a full grid of binary values (each element indicates cloudy or clear-sky conditions for

Re: [R-sig-Geo] Building Windows binary of rgdal package to include PGeo driver for reading ESRI personal geodatabases.

2012-02-07 Thread Mauricio Zambrano-Bigiarini
On 07/02/12 16:57, Barry Rowlingson wrote: On Tue, Feb 7, 2012 at 1:24 PM, Michael Denslow michael.dens...@gmail.com wrote: Sorry to join this discuss late, but I have also been curious about reading ESRI geodatabases since I teach with ArcGIS and work with rgdal for my own research purposes.