Daniele,
Daniele Bianchini wrote:
> I'm trying to make a projection of a quickbird dataset (TIF images,
> TIL file and RPB file) and I found some problems.
>
>
>
>
>
> 1. I have found a bug in ossimQuickbirdRpcHeader.cpp at line 159:
>
>
>
> original code:
>
>
>
> else if(lineCopy.contains("SPECID"))
>
> {
>
> theSatId = lineCopy.after("\"");
>
> theSatId = theSpecId.before("\"");
>
> }
>
>
>
> correct version:
>
>
>
> else if(lineCopy.contains("SPECID"))
>
> {
>
> theSpecId = lineCopy.after("\"");
>
> theSpecId = theSpecId.before("\"");
>
> }
>
Thanks, I fixed this in cvs just now prior to testing the rpcb image.
>
>
> 2. if I want to use an ossimQuickbirdRpcModel I must have NITF
> imagery files, but I have simple TIF imagery files. How can I
> use my dataset?
>
Currently the ossimQuickbirdRpcModel::parseFile is seeking a nitf. So
it would have to be coded to use tiff...
It wouldn't be that hard to do by looks of it. If you can provide a
sample I would look at it; however, I must work on customers stuff
first. If you decide to code it we would take your changes of course.
> 2.
>
>
>
>
> Thank you in advance for any help.
>
>
>
> Kind regards.
>
> Daniele Bianchini.
>
>
>
Take care,
Dave
|