Changes between Version 5 and Version 6 of Ticket #4254
- Timestamp:
- Sep 20, 2011, 9:57:06 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4254 – Description
v5 v6 1 1 I 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) 2 2 Philippe and you can join me with 3 my mail : mauge.philippe.at.free.fr (replace at with @) 3 my mail : mauge.philippe.at.free.fr 4 Oups after 2 days I ... 5 Finally I've found what was wrong in the file srpdataset.cpp at line 647, instead of 6 while(c ==' ' || c== '^') 7 just write 8 while(c != 30 ) 9 so 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 10 Philippe 11