Re: [gdal-dev] VPF support

2011-08-30 Thread Frank Warmerdam
On 11-08-30 11:24 PM, Livneh Yehiyam wrote: Hi I understand that for GDAL to support reading VPF files, I need to have the OGDI driver. Are there prebuilt binaries for windows 64 bit which include OGDI? Are there prebuilt binaries of OGDI itself, which I can use to build GDAL with that driver? th

Re: [gdal-dev] question about build static gdal with visual studio

2011-08-30 Thread Frank Warmerdam
On 11-08-30 06:58 PM, tang wrote: Thanks a lot for your replay! I got the gdal.lib,but while I link the program to this lib,it still needs gdal18.dll. this confused me . I had tried to comment out DLLBUILD=1 , but the commandline programs need gdal18.dll too. even replacing all gda

[gdal-dev] VPF support

2011-08-30 Thread Livneh Yehiyam
Hi I understand that for GDAL to support reading VPF files, I need to have the OGDI driver. Are there prebuilt binaries for windows 64 bit which include OGDI? Are there prebuilt binaries of OGDI itself, which I can use to build GDAL with that driver? thanks Yehiyam *

Fwd: [gdal-dev] Re: discussion on improvements to the NetCDF driver and CF-1 convention

2011-08-30 Thread Hendy Sumanto
Hi Etienne, I have a few items which I would like to put as new topics in the wiki entry but I think I better describe them here first before putting any entry or creating tickets. 1. As part of the improvement to the NetCDF driver, is it possible to make request to implement the Create method

Re: [gdal-dev] Re: gdalwarp capability to output as netCDF format

2011-08-30 Thread Hendy Sumanto
Thanks for both Chaitanya kumar CH and Even Rouault for your replies. I will make a request to implement the Create method for the NetCDF driver so that gdalwarp can output as netCDF format on the NetCDF improvements thread. Regards, Hendy - Original Message - From: "Even Rouault" To:

Re: [gdal-dev] question about build static gdal with visual studio

2011-08-30 Thread tang
Thanks a lot for your replay! I got the gdal.lib,but while I link the program to this lib,it still needs gdal18.dll. this confused me . I had tried to comment out DLLBUILD=1 , but the commandline programs need gdal18.dll too. even replacing all gdal_i.lib with gdal.lib helps nothing.

Re: [gdal-dev] using GDALGridCreate in python?

2011-08-30 Thread Even Rouault
Le mardi 30 août 2011 22:57:34, Matt Funk a écrit : > On 8/30/2011 1:39 PM, Even Rouault wrote: > > Le mardi 30 août 2011 21:28:11, Matt Funk a écrit : > >> Hi, > >> i have several satellite scenes which basically give me 3 vectors: > >> lat/lon/data which is on an irregular. I would like to interp

Re: [gdal-dev] using GDALGridCreate in python?

2011-08-30 Thread Matt Funk
On 8/30/2011 1:39 PM, Even Rouault wrote: > Le mardi 30 août 2011 21:28:11, Matt Funk a écrit : >> Hi, >> i have several satellite scenes which basically give me 3 vectors: >> lat/lon/data which is on an irregular. I would like to interpolate those >> onto a regular grid. I found that GDALGridCreat

Re: [gdal-dev] GTiff optimisation

2011-08-30 Thread Matt Wilkie
Yves, it's best to use gdalwarp without any compression options and then use gdal_translate as a last step to apply the compression. See http://trac.osgeo.org/gdal/wiki/UserDocs/GdalWarp#GeoTIFFoutput-coCOMPRESSisbroken for more. cheers, matt wilkie --

Re: [gdal-dev] using GDALGridCreate in python?

2011-08-30 Thread Even Rouault
Le mardi 30 août 2011 21:28:11, Matt Funk a écrit : > Hi, > i have several satellite scenes which basically give me 3 vectors: > lat/lon/data which is on an irregular. I would like to interpolate those > onto a regular grid. I found that GDALGridCreate would meet my need > except that i am developi

[gdal-dev] using GDALGridCreate in python?

2011-08-30 Thread Matt Funk
Hi, i have several satellite scenes which basically give me 3 vectors: lat/lon/data which is on an irregular. I would like to interpolate those onto a regular grid. I found that GDALGridCreate would meet my need except that i am developing in python, but it appears the bindings for it don't exist (

Re: [gdal-dev] GTiff optimisation

2011-08-30 Thread Yves Jacolin
Etienne, Ah yes I understand :) Actually I tested geotifcp to add projection information in the geotiff file but I had some problem. Since I have ECW files also I moved to gdal utilities. Merci ! Y. Le mardi 30 août 2011 15:09:13, Etienne Tourigny a écrit : > Bonjour Yves, > > > I think tha

Re: [gdal-dev] question about build static gdal with visual studio

2011-08-30 Thread Frank Warmerdam
On 11-08-30 01:12 AM, tang qingyuan wrote: HI ! gdal is default build to dynamic lib with visual studio.How can I build it to static lib ? Maybe a stupid question,But I cannot get the answer on mail list. Thanks! Tang Qingyuan, In fact, I think you can get the answer on the mailing list!

Re: [gdal-dev] Re: discussion on improvements to the NetCDF driver and CF-1 convention

2011-08-30 Thread Etienne Tourigny
Brian, I am not familiar with madis data.  I assume that it is point-data for meteorological stations? If you like, please post your ideas and a short description in a new topic in the wiki entry at http://trac.osgeo.org/gdal/wiki/NetCDF_Improvements . Etienne - Original Message - F

Re: [gdal-dev] GTiff optimisation

2011-08-30 Thread Etienne Tourigny
Bonjour Yves, I think that gdalwarp is not optimized for saving compressed geotiffs, you would have to do that in a second step. This topic has been addressed in this list not long ago. Anyway, you should be using gdal_translate (with a_srs flag) instead for this task, as you are just adding

[gdal-dev] GTiff optimisation

2011-08-30 Thread Yves Jacolin
Hello, I am converting GTiff to GTiff in order to add projection and georeferencing information in the header. I am using gdalwarp with some flags, mailny -co flags. I have some question about this. Here is my command line: gdalwarp -co "COMPRESS=PACKBITS" -co "PHOTOMETRIC=MINISWHITE" -co "NBI

Re: [gdal-dev] Projection definition issue with Mapinfo files

2011-08-30 Thread Yves Jacolin
Thanks Even! I did not remember this ticket :) I attached the zip file and add a comment which I hope clarify things about the zip file content. Y. Le mardi 30 août 2011 00:35:54, Even Rouault a écrit : > Le lundi 29 août 2011 13:34:22, Yves Jacolin a écrit : > > Hello, > > > > One of QGIS user

[gdal-dev] question about build static gdal with visual studio

2011-08-30 Thread tang qingyuan
HI ! gdal is default build to dynamic lib with visual studio.How can I build it to static lib ? Maybe a stupid question,But I cannot get the answer on mail list. Thanks! ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailm