Re: [gdal-dev] Use of sexagesimal "pseudo format" in pcs.csv?

2016-04-26 Thread Even Rouault
Le mardi 26 avril 2016 20:23:28, Jim Lacy a écrit : > All- > > This morning I was confused by the formatting of lat/lon parameters used in > the GDAL pcs.csv file. I initially thought the lat/lon values in the file > are standard decimal degrees, until I realized some things weren't adding > up.

[gdal-dev] Use of sexagesimal "pseudo format" in pcs.csv?

2016-04-26 Thread Jim Lacy
All- This morning I was confused by the formatting of lat/lon parameters used in the GDAL pcs.csv file. I initially thought the lat/lon values in the file are standard decimal degrees, until I realized some things weren't adding up. After digging, I learned those params use a "pseudo format"

Re: [gdal-dev] Can't read column name of a gdb file with lattin letters

2016-04-26 Thread Even Rouault
Le mardi 26 avril 2016 11:58:36, Tomer a écrit : > If the problem because the null bytes, I still don't understand why I got > the same column name before and after the changes I did in the source > code. That why I guess there is also another problem. Do you know know > what it can be? Without se

Re: [gdal-dev] Can't read column name of a gdb file with lattin letters

2016-04-26 Thread Tomer
If the problem because the null bytes, I still don't understand why I got the same column name before and after the changes I did in the source code. That why I guess there is also another problem. Do you know know what it can be? -- View this message in context: http://osgeo-org.1560.x6.nabble

Re: [gdal-dev] Progress and cancel of gdalwarp program

2016-04-26 Thread Even Rouault
Le mardi 26 avril 2016 11:58:22, Gane R a écrit : > [1] Is is possible to get the progress 10...20... into a variable and [2] > is it possible to cancel the warp progress, say cancel the operation. See how it is done in https://svn.osgeo.org/gdal/trunk/gdal/port/cpl_progress.cpp > > I saw the d

Re: [gdal-dev] Progress and cancel of gdalwarp program

2016-04-26 Thread Gane R
[1] Is is possible to get the progress 10...20... into a variable and [2] is it possible to cancel the warp progress, say cancel the operation. I saw the documentation and sample in JPEG CreateCopy, gdal_translate and GDALDummyProgress used in quiet operation. Thanks Gane On Tue, Apr 26, 2016 a

Re: [gdal-dev] Progress and cancel of gdalwarp program

2016-04-26 Thread Even Rouault
Le mardi 26 avril 2016 11:36:46, Gane R a écrit : > Is that any way to get the progress of the gdalwarp and make a cancel > request of gdalwarp. > > in gdal 1.10.1 > In gdalwarp.cpp > I see psWO->pfnProgress = GDALTermProgress; > > This for only progress right ? No, if the function returns FALS

[gdal-dev] Progress and cancel of gdalwarp program

2016-04-26 Thread Gane R
Is that any way to get the progress of the gdalwarp and make a cancel request of gdalwarp. in gdal 1.10.1 In gdalwarp.cpp I see psWO->pfnProgress = GDALTermProgress; This for only progress right ? I want to have function called with the progress displayed and also check, if cancel is requested.