Re: [gdal-dev] Help with color map for raster grid

2014-02-24 Thread Chaitanya kumar CH
Daniel, You can make changes in two places. In the data or the display engine. In the data, you can modify the colour table. This will be permanent. In the display, you just load a different color table based on the table of pixel values. If you don't like either, you can build a gdal vrt file and

[gdal-dev] Help with color map for raster grid

2014-02-24 Thread windchaser
Hi, I am working with GDAL in a C# project. I need help figuring out how to increase the colors displayed on a raster grid. Opening the file using Gdal.Open("myfile", OSGeo.GDAL.Access.GA_ReadOnly); seems to offer some colors but I would like to increase the number of colors for the raster map, spe

[gdal-dev] GSoC'14

2014-02-24 Thread Dmitriy Baryshnikov
Hi all, congratulations, the OSGeo is in list of accepted organisations for GSoC! OSGeo GSoC page: http://wiki.osgeo.org/wiki/Google_Summer_of_Code_2014_Ideas -- Best regards, Dmitry ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.

Re: [gdal-dev] GDAL C# bindings using rasterlite

2014-02-24 Thread Even Rouault
Le lundi 24 février 2014 09:35:42, Marcel Gangwisch a écrit : > Hi *, > > currently I'm using SQLite + Spatialite + GDAL to manage vector data. > I know it is also possible to use SQLite also with raster data. > Therefore I have to translate all GDAL input data to > sqlite as rasterlite. > > Does

[gdal-dev] GDAL C# bindings using rasterlite

2014-02-24 Thread Marcel Gangwisch
Hi *, currently I'm using SQLite + Spatialite + GDAL to manage vector data. I know it is also possible to use SQLite also with raster data. Therefore I have to translate all GDAL input data to sqlite as rasterlite. Does anybody know how to do that, with the help of the GDAL C# bindings? - Hav