3
votes
2answers
65 views

How to calculate the shared area between a raster and a shape file in ArcGIS 10?

I have a raster file with 5 classifications developed from habitat modelling algorithms. I'd like to know how much of 2 classes of the raster is covered by the network of protected areas (Shape file). ...
0
votes
1answer
103 views

Problem to clip a raster with a shapefile

I need to clip a rasterlayer with a vector layer. When I try this, the following error appears: **ERROR 1: Attempt to create 0x0 dataset is illegal,sizes must be larger than zero.** What am I ...
3
votes
1answer
199 views

How to convert jpg file to shapefile?

I am developing a GIS application like this: By now my steps are: I have got a jpg file, 5040 x 8179 dimension. In this map, the roads, rivers, towns etc. are marked. I am using .Net to develop ...
2
votes
4answers
288 views

ArcInfo Grid ASCII to ESRI Shapefile conversion

I have an ArcGIS grid ascii file (Ramankutty Cropland at 5 minute resolution) that begins as follows: ncols 4320 nrows 2160 xllcorner -180 yllcorner -90 cellsize ...
1
vote
0answers
103 views

How to use GDAL to burn a selected value from one raster into another?

I think this should be a relatively simple process, but I'm not quite sure how to approach it. I have a shapefile containing 1000's of polygons. I also have 19 rasters. All of the polygons fall ...
2
votes
1answer
108 views

Tiling Rasters based on an existing Polygon Shapefile (Vector Grid)

I have a tile index representing the tile scheme used to tile Lidar data. I want to tile imagery rasters using the same tiling scheme. I have not found anyway using open source tools to tile a ...
3
votes
1answer
327 views

Creating Isolines from point Data

I'm quite new with ArcGis 10 so I’m having difficulties with something that may be simple to some. Anyway I have a list of bores that I’ve plotted using coordinates. Now I need to draw a single ...
6
votes
1answer
106 views

Is there a difference between projecting shapefiles then rasterizing & rasterizing shapefiles then projecting?

I currently have a project where I rasterize shapefiles into simple presence/absence (1 & 0) rasters and then add each one to a running total to create a total richness raster at the end. The ...
3
votes
3answers
196 views

How to compare a set of images with a shapefile?

I have around 150 images (rasters), each one is just a map of certain "classes", e.g. pixel value 1=forest. I also have a shapefile that consists of roughly the same area as the 150 images constitute ...
5
votes
6answers
933 views

how to overlay shapefile and raster?

I have a shapefile with polygons. And I have a global raster file. I want to overlay the shapefile's polygons onto the raster grid and calculate the mean raster value for each polygon. How can I do ...
4
votes
2answers
411 views

Extract all pixels of given RGB value and render as MultiPolygons

Given a geotiff image with a colortable in it, what is the easiest way to extract each color as its own "layer or shapefile or multipolygon object"? Specifically, I am looking for a programmatic ...
4
votes
1answer
2k views

Converting a polygon into a raster using R

I'm trying to convert a shapefile into a raster within R. My approach is to read in the raster as follows: library(rgdal) # Loads SP package by default demo <- readOGR('F:/data/', 'shapefile') # ...
0
votes
1answer
123 views

Where to get raster files of Earth, united states [duplicate]

Possible Duplicate: Open access repository of general GIS spatial data? I'm brand new to GIS programming so please excuse my lack of knowledge. I am developing a GIS web app using ...
8
votes
4answers
301 views

Identify corrupt shapefiles or rasters via Python or ArcObjects

I'm interested in a way to identify rasters (e.g., ESRI GRID format) or shapefiles that are corrupt that would prevent them from being used in an analysis tool. I have a large number in structured ...
14
votes
6answers
806 views

Creating simple image from vector data

Can anyone suggest a quick (and preferably open source) way to create an image from a shapefile. For example, I have a shapefile containing parcel boundaries, I want to create a png file depicting ...