[gdal-dev] Luratech LuraWave JP2 Support in GDAL

2012-08-07 Thread Evgeniy Borovenskiy
Good morning, Could you tell us, please, do you plan the support of LuraWave JP2 in GDAL? And If you're familiar with this library, could you write us please about its advantages and disadvantages. Where does it lose to other libraries, for example KAKADU? Thank you very much for your reply in

Re: [gdal-dev] looking for GeoTIFF samples with RPC metadata

2012-08-07 Thread Ivan Lucena
Hi Frank, The .RPB are perfect good example of RPC and GDAL reads it pretty well, although it is a little bit strange that gdalinfo reports the Reference System and GeoTransform matrix completely dissociated from the RPC but I think it does makes sense, since most of the applications will not

Re: [gdal-dev] looking for GeoTIFF samples with RPC metadata

2012-08-07 Thread Frank Warmerdam
On Tue, Aug 7, 2012 at 2:39 PM, Ivan Lucena wrote: > Jared, > > You can find some images with RPC from Bolder Colorado USA here: > > http://www.digitalglobe.com/product-samples > > "Quickbird: Ortho Ready Standard Satellite Imagery" > > Be aware of the license. Ivan / Jared, I fetched the datas

Re: [gdal-dev] looking for GeoTIFF samples with RPC metadata

2012-08-07 Thread Ivan Lucena
Jared, You can find some images with RPC from Bolder Colorado USA here: http://www.digitalglobe.com/product-samples "Quickbird: Ortho Ready Standard Satellite Imagery" Be aware of the license. Regards, Ivan > ---Original Message--- > From: Jared Rubin > To: gdal-dev@lists.osgeo.o

[gdal-dev] looking for GeoTIFF samples with RPC metadata

2012-08-07 Thread Jared Rubin
I went to the below link and did not find any GeoTIFF with RPC ftp://ftp.remotesensing.org/pub/geotiff/samples Does anyone know where there are samples that can be downloaded? thanks Jared ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.os

Re: [gdal-dev] GDAL 64 bit libs for windows

2012-08-07 Thread Jukka Rahkonen
Billy Newman gmail.com> writes: > > > I recently asked about 32 bit GDAL libs with Java bindings for windows.  I really need both 32 and 64 bit binaries. Check http://www.gisinternals.com/sdk/ -Jukka Rahkonen- ___ gdal-dev mailing list gdal-dev@li

[gdal-dev] GDAL 64 bit libs for windows

2012-08-07 Thread Billy Newman
I recently asked about 32 bit GDAL libs with Java bindings for windows. I really need both 32 and 64 bit binaries. Thanks, Billy ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] Units of dimension variable in NetCDF is 'km'

2012-08-07 Thread Anton Korosov
I could not find any. There is a similar bug in DODS driver (it assumes 'lat' and 'lon' names for dimension variables), but fixing requires large update/debugging. On 08/07/2012 04:01 PM, Etienne Tourigny wrote: yes please! are there any other areas which could require a similar fix? Etienne

Re: [gdal-dev] Units of dimension variable in NetCDF is 'km'

2012-08-07 Thread Kyle Shannon
What version are you using? I seem to remember something like this in a ticket I filed. I thought it was fixed in 1.9.1. kss On Tue, Aug 7, 2012 at 5:38 AM, Etienne Tourigny wrote: > Hi, > > km units are supposed to work... > > Here is the code where "km" units are detected, which set the WKT

Re: [gdal-dev] Units of dimension variable in NetCDF is 'km'

2012-08-07 Thread Etienne Tourigny
Hi Kyle, Anton identified the problem, the driver assume that x dimension is named "x", and in his dataset it is named "xc". The fix you refer to probably would not work in this case either. Etienne On Tue, Aug 7, 2012 at 10:59 AM, Kyle Shannon wrote: > What version are you using? I seem to r

Re: [gdal-dev] Units of dimension variable in NetCDF is 'km'

2012-08-07 Thread Etienne Tourigny
Hi, km units are supposed to work... Here is the code where "km" units are detected, which set the WKT units to 1000m. /* add units to PROJCS */ if ( pszUnits != NULL && ! EQUAL(pszUnits,"") ) { if ( EQUAL(pszUnits,"m") ) { oSRS.SetLine

[gdal-dev] Units of dimension variable in NetCDF is 'km'

2012-08-07 Thread Anton Korosov
Dear Etienne, I faced the following problem with the NetCDF driver: Units of the dimension variables are 'km' and values in the SRS are in meters, of course (e.g. Earth radius). Hence the calculated GeoTransform is 1000 times less than should be and the calculate latlons are incorrect. However