[R-sig-Geo] Elevation data in R: elevatr v0.1.1

2017-01-30 Thread Hollister, Jeff
All, Just wanted to share this with the group. A new package for accessing elevation data in R, elevatr, is now on CRAN: https://cran.r-project.org/package=elevatr Any questions about the package please let me know either through email or via the issues at

Re: [R-sig-Geo] Elevation data

2017-01-13 Thread Miluji Sb
Dear Loic, Thank you for your reply! Re. aggregation, I agree - I will use either mean or median. gcp_grid are points as below structure(list(longitude = c(-179L, -178L, -177L, -177L, -177L, -176L), latitude = c(-15L, -15L, -14L, 51L, 52L, -22L)), .Names = c("longitude", "latitude"), row.names

Re: [R-sig-Geo] Elevation data

2017-01-13 Thread Loïc Dutrieux
On 13/01/2017 10:59, Miluji Sb wrote: > Thank you for your reply. This is what I did: > > ### > library(data.table) > library(raster) > library(rgdal) > library(foreign) > > elevation_world <- getData('worldclim', var='alt', res=2.5) > > # Aggregate Elevation to 1 degree >

Re: [R-sig-Geo] Elevation data

2017-01-13 Thread Miluji Sb
Thank you for your reply. This is what I did: ### library(data.table) library(raster) library(rgdal) library(foreign) elevation_world <- getData('worldclim', var='alt', res=2.5) # Aggregate Elevation to 1 degree elevation_world_1deg <- aggregate(elevation_world, fact = 24, fun = sum) # Extract

Re: [R-sig-Geo] Elevation data

2017-01-12 Thread Bacou, Melanie
R raster::getData("SRTM", ...) will return elevation rasters at 90m resolution. See: https://www.rdocumentation.org/packages/raster/versions/2.5-8/topics/getData http://www.cgiar-csi.org/data/srtm-90m-digital-elevation-database-v4-1 --Mel. On 1/11/2017 6:26 AM, Miluji Sb wrote: Dear

[R-sig-Geo] Elevation data

2017-01-10 Thread Miluji Sb
Dear all. Is there a way to download global elevation data at the 1° x 1° resolution in R using a given set of coordinates? I know about the getData() function but can many coordinates be passed through this? Thanks! Sincerely, Milu [[alternative HTML version deleted]]