[gdal-dev] Cosmo Skymed georreference support

2011-07-14 Thread Alex Mantaut
e allready created a patch to solve ticket 4121, and it works properly... I'm hoping the patch will be usefull to the project. Please feel free to review the patch, every feedback will be welcomed. The ticket: http://trac.osgeo.org/gdal/ticket/4160 Best regards -- --      A

Re: [gdal-dev] RE: How to get some special metadata of HDF5 Cosmo-Skymed file

2011-07-11 Thread Alex Mantaut
I'm not sure if I understood your problem... You can't find the Calibration Constant? In that case the calibration constant is a property of the Sxx group. Check csk-product handbook page 45 for more information. Hope it helps! Regards 2011/7/11 RSyaoxin : > Thanks Alex Mantaut .Thi

Re: [gdal-dev] RE: How to get some special metadata of HDF5 Cosmo-Skymed file

2011-07-11 Thread Alex Mantaut
: > Thanks Antonio Valentino and Alex Mantaut. I've got these parameters.I have > a new problem,I need to get the backscatter image,but the calibration result > is not correct,the calibrated image pixels are all zero.I doubt that my > method is not correct.Who can give me some inform

Re: [gdal-dev] How to get some special metadata of HDF5 Cosmo-Skymed file

2011-07-11 Thread Alex Mantaut
2 > > The problem you are experimenting should be fixed in trunk but you need > to re-build GDAL from sources to get it. > > regards > > -- > Antonio Valentino > ___ > gdal-dev mailing list > gdal-dev@lists.osgeo.org > http://lists.os

Re: [gdal-dev] hdf5image metadata problems

2011-07-07 Thread Alex Mantaut
gic. http://trac.osgeo.org/gdal/ticket/4121#comment:4 Regards 2011/6/21 Alex Mantaut : > Hi all, I updated the ticket with what was discussed with Antonio... > > http://trac.osgeo.org/gdal/ticket/4121#comment:3 > > The defect is still there > > Regards > Alex > > PS:S

[gdal-dev] COSMO-SKYMED UPS projected files

2011-07-04 Thread Alex Mantaut
find where projected on UTM, none on UPS... I will like to test the driver for both projection types... Does anybody has COSMO-SKYMED UPS projected files? (i will use them only for testing purposes) thanks in advance -- -- Alex Mantaut SUR Emprendimientos Tecnológicos Perú 345  Piso 5to

Re: [gdal-dev] HDF5 product handling

2011-07-04 Thread Alex Mantaut
a few things before posting the patch, I look foward incorporate the patch into the project. Regards 2011/7/4 Frank Warmerdam > On Mon, Jul 4, 2011 at 9:16 AM, Alex Mantaut > wrote: > > Hi Frank, > > In that case all the handling for the CSK product should go on the

Re: [gdal-dev] HDF5 product handling

2011-07-04 Thread Alex Mantaut
t the information? regards 2011/7/4 Frank Warmerdam > On Mon, Jul 4, 2011 at 8:52 AM, Alex Mantaut > wrote: > > I would like to ask what would be the best way to implement a > driver > > that handles HDF5 subproducts, in a way that it doesn't interfere with > t

[gdal-dev] HDF5 product handling

2011-07-04 Thread Alex Mantaut
possible) Any feedback will be welcomed, thanks in advance Alex -- -- Alex Mantaut SUR Emprendimientos Tecnológicos Perú 345 Piso 5to Oficina "B" (C1067AAG) Ciudad de Buenos Aires, Argentina Tel. +54 (11) 4342-2976/84 alexmant...@suremptec.com.ar www.suremptec.com __

Re: [gdal-dev] hdf5image metadata problems

2011-06-21 Thread Alex Mantaut
011 17:27, Alex Mantaut ha scritto: > > Then, to keep consistency, the fact that hdf5imagedataset isn't > consistent > > with the hdf5dataset is a defect, right? > > May I summarize the conclusions and update the ticket? > > OK > > -- > Antonio Valentino > _

Re: [gdal-dev] hdf5image metadata problems

2011-06-16 Thread Alex Mantaut
don't know. I've always considered HDF5Dataset and > HDF5ImageDataset as quite different things: the index and the chapters. > > But I have to admit that yours is a good point. > > > > 2011/6/16 Antonio Valentino > > > > > Hi Alex, > > > > &g

Re: [gdal-dev] hdf5image metadata problems

2011-06-16 Thread Alex Mantaut
end a translated message with the conclusions to the list 2011/6/16 Antonio Valentino > Hi Alex, > > Il giorno Thu, 16 Jun 2011 10:05:42 -0300 > Alex Mantaut ha scritto: > > > Hi Antonio, > > > > For what I discussed with Frank it seemed that the expected beh

Re: [gdal-dev] hdf5image metadata problems

2011-06-16 Thread Alex Mantaut
xpected behavior is to get the information directly through GetMetadata() directly... regards 2011/6/15 Antonio Valentino > Hi Frank, hi Alex, > > Il 15/06/2011 22:34, Frank Warmerdam ha scritto: > > On 11-06-15 03:50 PM, Alex Mantaut wrote: > >> Hi Frank: > >>

Re: [gdal-dev] hdf5image metadata problems

2011-06-15 Thread Alex Mantaut
Frank: I opened a new defect ticket, and suggested a way around the problem (I'm not sure if it's the best solution) http://trac.osgeo.org/gdal/ticket/4121 Regards 2011/6/15 Frank Warmerdam > On 11-06-15 03:50 PM, Alex Mantaut wrote: > >> Hi Frank: >>

Re: [gdal-dev] hdf5image metadata problems

2011-06-15 Thread Alex Mantaut
t; On 11-06-15 03:19 PM, Alex Mantaut wrote: > >> Hi all, >> I'm trying to open the metadata from a subdataset of an HDF5 >> file... >> When I open the file by it's filename and then ask for the >> metadata it >> returns the metad

[gdal-dev] hdf5image metadata problems

2011-06-15 Thread Alex Mantaut
to the code of gdalinfo and it gets the information for the subdataset like this: GDALRasterBandH hBand; hBand = GDALGetRasterBand( poDataset, 1); char **allMetadata = GDALGetMetadata( hBand, NULL ); Must I use that in order to get the metadata? Thanks in advance -- -- Alex Mantaut SUR

Re: [gdal-dev] HDF5 metadata format problems

2011-06-14 Thread Alex Mantaut
r use GetMetadataItem() several times in order to get the necesary fields? GetMedata() can take more memory than necesary, but I'm not sure if GetMetadataItem() performs a read on the file, which could be slow... Regards Alex 2011/6/14 Frank Warmerdam > On 11-06-14 10:08 AM, Alex Mantaut w

Re: [gdal-dev] HDF5 metadata format problems

2011-06-14 Thread Alex Mantaut
way to do it (I could use CSLTokenizeString() and get the first field on the list, but this seems overly convoluted for a simple trim) Also, is there any guidelines on which libraries to use on C++ in replace of their std equivalents? Thanks again Alex 2011/6/13 Frank Warmerdam > On 11-06-13

[gdal-dev] HDF5 metadata format problems

2011-06-13 Thread Alex Mantaut
5 format? Sorry for the long mail Thanks in advance -- -- Alex Mantaut SUR Emprendimientos Tecnológicos Perú 345 Piso 5to Oficina "B" (C1067AAG) Ciudad de Buenos Aires, Argentina Tel. +54 (11) 4342-2976/84 javierur...@suremptec.com.ar www.suremptec.com ___

Re: [gdal-dev] HDF5 COSMO-SKYMED metadata problems

2011-06-08 Thread Alex Mantaut
Sorry, I accidentalñy pressed the "send" button Another issue. Does anybody has the COSMO-SKYMED HDF5 format specification or something that tells how to get the georreference information from those files? 2011/6/8 Alex Mantaut > I tried the patch warmerdam posted on the 1.8.0

Re: [gdal-dev] HDF5 COSMO-SKYMED metadata problems

2011-06-08 Thread Alex Mantaut
I tried the patch warmerdam posted on the 1.8.0 version an it worked, i can see the root metadata now. Thanks Antonio Valentino and Frank Warmerdam for the swift correction. Another issue. Does anybody has the COSMO-SKYMED HDF5 2011/6/7 Alex Mantaut > Antonio: >Thanks f

Re: [gdal-dev] HDF5 COSMO-SKYMED metadata problems

2011-06-07 Thread Alex Mantaut
r ago?) Can you release a newer version of the patch please? Vi ringrazio un'altra volta 2011/6/7 Antonio Valentino > Hi Alex, > > Il 07/06/2011 20:13, Alex Mantaut ha scritto: > > Hi: > > > > I'm trying to get georreference information from an HDF5 C

[gdal-dev] HDF5 COSMO-SKYMED metadata problems

2011-06-07 Thread Alex Mantaut
orreference from COSMO-SKYMED HDF5 files? Thanks in advance -- -- Alex Mantaut SUR Emprendimientos Tecnológicos Perú 345 Piso 5to Oficina "B" (C1067AAG) Ciudad de Buenos Aires, Argentina Tel. +54 (11) 4342-2976/84 javierur...@suremptec.com.ar www.suremptec.com ___