A rectangular array of pixels. A Raster defines values for pixels occupying a particular rectangular area of the plane, not necessarily including (0, 0).
1
vote
1answer
58 views
R: Calculating Pearson correlation coefficient in each cell along time line
I have two sets of rasters, both with same x,y,z extent. I've made two stacks: stacka and stackb. I want to calculate the Pearson correlation coefficient (PCC) in each grid cell between two stacks ...
-12
votes
0answers
135 views
How can I find the largest perpendicular of a polygon in R? [closed]
I'm trying to find the largest perpendicular for many separate polygons. I'm using ggplot to construct polygons from data.
I'm trying to avoid writing code to do this, I was wondering if a function ...
0
votes
1answer
18 views
Stack raster in a loop
I need to stack some rasters in a loop like:
for(month in 1:12){
.
.
.
"some algorithm spiting out a raster called 'sm_esa'"
sm_esa_stack<-stack(sm_esa)
}
In the end I'd like to create a stack ...
1
vote
1answer
40 views
Clipping rasters in R
I am building a map for the northeastern U.S.A.
The map background needs to be either an altitude map or a mean annual temperature map. I have two rasters from Worldclim.org which give me these ...
3
votes
1answer
28 views
What is the simplest RGB image format?
I am working in C on a physics experiment, Young's interference experiment and i made a program who prints to file a huge bunch of pixels :
for (i=0; i < width*width; i++)
{
...
-4
votes
0answers
63 views
How to replace values between rasters? [closed]
I have two directories:
Directory 1 - 1000 files (variable one,700 kB each,smn)
Directory 2 - 1000 files (variable two,700 kB each,smoitu)
these files are rasters with the same dimensions and ...
0
votes
1answer
12 views
How to create raster stack in ArcGis
In Idrisi software, its called rastergroup. In R, its called rasterstack. Is something like that exist in ArcGis?
The general idea is to 'group' all the raster layer in ArcGis, then convert it as a ...
0
votes
2answers
31 views
stack raster images from a folder in R
library(raster)
img <- list.files(pattern='*.img')
stack <- stack(img)
The code above should work but despite having *.img files in my folder, I also have *img.xml and *img.aux.xml files. How ...
0
votes
0answers
4 views
write raster file of 32 bit signed integer
I am trying to perform extract by mask function in the raster image file that does not have any projection. To do this, I first projected the raster image file into the projection system of zonal ...
0
votes
1answer
20 views
convert shape file to raster in matlab
I would like to convert a shape file to raster grid using matlab. First I tried to do it in Python but I have faced some difficulties and my superior recommended me to use MATLAB. I use matlab ...
4
votes
2answers
99 views
Select rasters in stack based on layer partial name match
I have a stack of rasters (one per species) and then I have a data frame with lat/long columns along with a species name.
fls = list.files(pattern="median")
s <- stack(fls)
...
0
votes
2answers
47 views
How to lighten picture in C# without actually iterating through all picture's pixels?
I'm having problem with lightening picture. I know I could do this by increasing/decreasing pixel's values, however it's not what I'm looking for. I've been told that there's a way that do not require ...
0
votes
0answers
37 views
Using imported PNG images with ggmap
I think ggmap is a great package, but feel limited by it's get_map() function only working with three mapping services, and that the default format for acquired maps is square.
So I'd like to import ...
0
votes
1answer
15 views
Decoding Video Data Per Pixel / Per Frame
Are there some suggestions on decoding video data from a webcam in raw format, I would like the per pixel raster data frame per frame.
0
votes
1answer
28 views
Import raster stack and return new layer
I am trying to import about 50 .tif files into a stack using the rasters package. Because of the large number of files I don't want to list them all out. I have tried a few methods but have been ...
-1
votes
0answers
44 views
Align two rasters up with different resolution and extent
I posted this question yesterday but without a solution. With package (raster) activated, I have these two raster files with different extents and resolutions:
sm_cesm
class : RasterLayer
...
1
vote
1answer
57 views
Estimate the gradient of an undefined surface
I want to estimate the gradient (slope and aspect) of an undefined surface (i.e., the function is unknown). To test my methods, here is the test data:
require(raster); require(rasterVis)
...
0
votes
1answer
9 views
Decoding a binary raster GIS file: Vertical Mapper .grd
Does anyone know of a method to decode this sort binary file. It should have a quite simple structure, a couple of lines of headers and then just grid data. I have the Vertical Mapper software but I ...
3
votes
1answer
61 views
can raster create multi-layer objects with different modes?
Can a raster object (in R) have layers of different mode (data type)?
On the face of it it seems we are always forced to one type:
library(raster)
## create a SpatialPixelsDataFrame with ...
2
votes
4answers
40 views
Set single raster to NA where values of raster stack are NA
I have two 30m x 30m raster files which I would like to sample points from. Prior to sampling, I would like to remove the clouded areas from the images. I turned to R and Hijman's Raster package for ...
1
vote
1answer
36 views
ImageMosaic-JDBC Error
I'm trying to get postgis raster layers in geoserver-2.3.1, with postgresql-8.4, postgis-2.0 and gt-imagemosaic-jdbc-9.1.jar support. I'm going through the tutorial with a PNG raster that i have. In ...
0
votes
2answers
47 views
Raster scanning in Matlab
I'm attempting to write code for a much larger project that involves fingerprint recognition. I'm trying to use blockproc that takes 3x3 "windows" of my 128x128 matrix. I have a 52x9 matrix where each ...
0
votes
1answer
11 views
R Raster package, substitute
I'm trying to reclassify a RasterLayer to turn all 0's to NA. I've tried (1) Reclassify, (2) Subs, and (3) replace NA statements below:
Method, error
con1RC<-reclassify(con2, matrix(c(0, 0, NA))
...
2
votes
0answers
59 views
simple way to randomly subset a raster in R
I work in R.
I have a raster (raster_entrop). I want to automatically generate random subset of this raster. The issue is that its extent is not rectangular and I want subsets completly enclosed in ...
0
votes
3answers
88 views
How to map numbers to colours?
I am trying to view this file(unsigned character, pixel =1440 and lines=720) as a map. I tried the piece of code given bellow. First, I downloaded this file. may problem is that this code is using a ...
1
vote
3answers
72 views
R - raster function NAs values lower than -9999 in ASCII file
I have been having problems importing a ASCII raster that has values that go from Min. :-69826220 to Max. :167780500. The problem I am encountering is that when I use the raster function to import ...
0
votes
1answer
33 views
What does “region” and “polygon” mean in rasterize function from raster library in R?
When I use the function rasterize from the raster library in R, this message appears in the console:
"Found 6085 region(s) and 6409 polygon(s)".
There is 6085 polygons in the shapefile, so I was ...
2
votes
2answers
57 views
Eloquently change many raster cell values in R
I have a Landfire Existing Vegetation dataset (http://www.landfire.gov/), which I have projected and cropped to my study site. The raster has ~12,000,000 cells. The cell values represent a ...
0
votes
0answers
69 views
buffered image quality suffers in rbga to gif converter
I have the following function:
public static BufferedImage convertRGBAToGIF(BufferedImage src, int transColor) {
BufferedImage dst = new BufferedImage(src.getWidth(), src.getHeight(), ...
0
votes
2answers
48 views
How to convert Raster to RenderedImage
I make a snapshot of screen and thah try to get a part of image, when I try to save it to file it doesnt work.
Will be happy to get any advice
Rectangle Rect = new Rectangle(10, 10, 50, 50);
File ...
1
vote
0answers
55 views
How to get RGB raster image with UTM coordinates, R
I have a three layer raster with the R, G, and B values in it and can make the desired image with 'plotRGB' using the 'raster' packager in R, but I need to add UTM coordinates to this. (Coordinates ...
2
votes
1answer
67 views
Speed-optimized loop through single cells of a RasterStack object
I'm working with two RasterStack objects, each one consisting of ten layers representing single time steps.
# Mock data
pred.rst.stck <- do.call("stack", lapply(seq(10), function(i) {
pred.rst ...
0
votes
0answers
36 views
GDAL GetRasterBand() function return type in python
I'm using the gdal GetRasterBand() function which returns a GDALBand object. What I want however is a GDALRasterBand Object (mostly because it has the data I need.) Is there a function that gives that ...
2
votes
2answers
79 views
Merging multiple rasters in R
I've been trying to find a time-efficient way to merge multiple raster images in R. These are adjacent ASTER scenes from the southern Kilimanjaro region, and my target is to put them together to ...
0
votes
1answer
84 views
int[] to BufferedImage
I'm trying to filter a image. First, I put RGB values inside int[][] and then filter.
In the next step I have to convert int[][] to int[] and finally I would want to display the new image again. This ...
-2
votes
2answers
83 views
How to represent certain values in a file as we want?
I have a raster file(1440*720 rows) contains values of 1 ,2 , and 3.
when I plot the file , I got a map of three colors but I do not know which is which.
How can I put those colors as as I want :
...
1
vote
1answer
81 views
Coverting an Int array on to a raster Java
This day i was watching this tutorial and he used this line...
private int[] pixels =((DataBufferInt)image.getRaster().getDataBuffer().getData());
But by some reason for him it works but for me it ...
0
votes
1answer
55 views
extract from {raster} package using excessive memory
I have been using the extract function from the raster package to extract data from raster files using an area defined by shapefiles. However, I am having problems with the amount of memory that this ...
1
vote
1answer
34 views
Does gridDistance calculate the geodetic distance when working in LatLong? (raster package in R)
gridDistance function in R (raster package) produce a map of distances from cell with a given value. The function gives the distance in the units of the current projection, or in meters if working in ...
1
vote
1answer
70 views
combine one band rasters to get a multiband raster
I have 4 one-band's rasters (same resolution, same extents...) that I want to combine to have a four-band's raster. Anyone could tell me how to do this with R?
Thank you.
0
votes
1answer
56 views
Why the values of my raster map change when I project it to a new CRS (projectRaster function in R)?
I need to project a map in latlong to an azimutal equidistant projection.
map_proj<-projectRaster(map, crs="+proj=aeqd +lon_0=48+lat_0=18")
In my original map I have these values
class : ...
0
votes
2answers
100 views
get coordinates of a patch in a raster map (raster package in R)
I have a raster map with many patches (clumps of continguous cells with the same value). What I need to do is to obtain the coordinates of the center (or close to the center) of each patch.
I am very ...
1
vote
1answer
131 views
How to put conditions using the decimals in calculations?
Having two rasters (values are floats with 5 decimals) with the same dimensions.
The code given below makes one file out of two rasters r and r1. If r is bigger,put blue ,otherwise put red.
This ...
0
votes
0answers
73 views
why moving average is taking too much time?
I am calculating a moving average for 601 rasters (720, 1440)and it is taking
a day to finish. I wonder if this is normal or something is wrong
I am using Linux .
code:
dir1 <- ...
0
votes
1answer
73 views
How to extract and calculate the mean for certain region form rasters?
I have 12 rasters 1440*720 representing the globe.I want to select small region in the first raster and calculate the spatial average for that region and do the same for the other 11 rasters. so will ...
0
votes
1answer
66 views
Overlay Many ASCII layers in Raster Package R
I have 120 species distribution maps as .asc files which I have stacked using the r package "raster". I would like to add all of these layers to produce a richness map for a large spatial extent. I ...
2
votes
1answer
59 views
geotools reader
I have a problem when I try to get object from AbstractGridCoverage2DReader. I need it to get CoordinateReferenceSystem and coverage.
File file = new File("Resource/new.tif");
AbstractGridFormat ...
-1
votes
1answer
94 views
Reading pixels from BufferedImage - wrong color values
When a spaceship is destroyed I create list containg pixels of spaceship's image. Pixels are objects of my Pixel class. After creating list it's added to main list where various actions are performed ...
-1
votes
1answer
38 views
Creating a RasterLayer
I'm trying to create a raster layer from a matrix that contains in the columns the species names, longitude and latitude.
The data name is "base", and when I try to create the rasterlayer with the ...
0
votes
1answer
105 views
Creating Raster with values based on function output
I have a function that calculates a price based on the input slope and distance. I want to write the price to a raster as the rastervalue. How do I do that?
OpenSource and ArcMap solutions would ...


