2
votes
0answers
56 views

How to create raster attribute table to a raster data using gdal python?

I classified a remote sensing data and saved it as a raster using Gdal python. I want to create a raster attribute table for this classified result.. my classified raster has five classes with ...
1
vote
1answer
129 views

How to assign new values to a raster attribute table - by comparing two fields?

I have created a new raster from two raster datasets using combine operation in ArcGIS. The new attribute table has two fields from the input rasters. What I need is, to compare these two fields and ...
3
votes
0answers
74 views

Build Raster Attribute Table with GDAL Utilities

Is there a way to build a raster attribute table using one of the GDAL utilities? I know you can view it using gdalinfo and I have successfully created one using Python, but it would be so much ...
2
votes
0answers
39 views

What are the characteristics of a raster to Netcdf layer in ArcMap?

Specifically, when trying to edit the attribute table? This is would be for work purely in ArcMap, and converting raster to Netcdf. I have a land cover layer (that I've converted to a raster to ...
7
votes
2answers
246 views

Python, GDAL and building raster attribute tables

I have an integer raster for which I would like to build a raster attribute table using Python and GDAL. I can create a GDAL raster attribute table in Python as follows: >>> rat = ...
5
votes
3answers
311 views

Is it possible, in QGIS, to create buffers with a set radius, but with individual values taken from the attribute table?

I am looking to create an output that consists of an 11KM buffer around a number of discrete points, where the buffer has a value defined by a column in the data sets attribute table. Is this ...
1
vote
3answers
644 views

How do I get the values of each cell in the raster attribute table?

How do I get the values of each cell in the raster attribute table. Usually the attribute table gives you the value and number of counts. But, in my case I want each cell listed and corresponding cell ...
3
votes
1answer
342 views

Can I access a raster attribute table in QGIS?

I have some Python code that makes Raster Attribute Tables for GeoTiffs using GDAL. In ArcGIS I can see these attribute tables fine and they behave how I like (as classifications). But in QGIS the ...
1
vote
0answers
97 views

identify the fraction of raster cells and listing all the cell values in every polygon

In Arcgis 10 I have a netcdf file that maps the fractions of cropland in the world from 1700 to 2007. I extracted the years that i needed as raster layer format (continous data from 0 to 1) and now, ...
3
votes
3answers
163 views

What FOSS GIS has the option to link attribute tables to rasters

In ArcGIS rasters can have attribute tables. What FOSS GIS offers a similar option?
2
votes
1answer
693 views

Adding fields to raster attribute table

I have a raster attribute table associated with an IMAGINE .img raster that I build and open with: IGPUtilities utils = new GPUtilities(); IRasterDatasetEdit2 raster = (IRasterDatasetEdit2) ...