Changes between Version 5 and Version 6 of Ticket #4254


Ignore:
Timestamp:
Sep 20, 2011, 9:57:06 AM (13 years ago)
Author:
flovinopi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4254 – Description

    v5 v6  
    11I use GDAL to read and display data in various formats (DTED, USRP, CADRG, USRP, GEOTIFF, …). It’s working fine but some USRP DATA cannot be decoded correctly. On attached files you can see a USRP data decoded with GDAL and Global mapper. There is a problem with the tiles !!!. If somebody can help me, I can send the USRP DATA on a http site (It’s about 130 MB)
    22Philippe and you can join me with
    3 my mail : mauge.philippe.at.free.fr (replace at with @)
     3my mail : mauge.philippe.at.free.fr
     4Oups after 2 days I ...
     5Finally I've found what was wrong in the file srpdataset.cpp at line 647, instead of
     6while(c ==' ' || c== '^')
     7just write
     8while(c != 30 )
     9so instead of skipping blank and '^', you just have to look for the next Record Separator (RS or ASCII code 30), I will attached the new srpdataset.cpp
     10Philippe
     11