Tagged Questions
1
vote
1answer
19 views
What to do when raster cell size is larger than zonal vector feature in order to collect statistics?
I am trying to extract the mean cell values for a raster dataset based on a survey grid polygon feature using ArcINFO 10.4. The cell size of the raster dataset is about 4 times the size of the survey ...
2
votes
1answer
44 views
Tabulate Area crashes Python and ArcGIS
I have a script that runs Tabulate Area on a single feature class multiple times with different rasters. In total Tabulate Area runs 5 times. 2 of the input rasters are provided as arguments to the ...
2
votes
1answer
59 views
Zonal Statistics-Weighting
I have a raster file on precipitation and I want to create zonal statistics as a table using a shape file wiht boundaries of countries across the world. However it appears that I need to take into ...
2
votes
1answer
112 views
joining a table from zonal statistics as table with a layer, problem with reserved names
I have a raster file (percentage of total forest killed) and a shapefile with polygons (municipalities). I thought as a first step I would like to find out which municipality shows the greatest ...
1
vote
0answers
292 views
Raster grid for zonal statistics in R
I have two raster layer, the first one r is my zonal mask as a raster grid, and I created as:
ext <-extent(Yraster)
r <- raster(nrows=32,ncols=32,ext)
r[] <-(1:ncell(r))
and project it ...