Changes between Initial Version and Version 1 of Ticket #3177
- Timestamp:
- Oct 9, 2009, 11:34:50 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3177
- Property Priority normal → high
- Property Status new → assigned
-
Ticket #3177 – Description
initial v1 1 1 We have uncovered a defect for the PDS image type when using detached labels. Unfortunately, it was not written into the original PDS reader as the only cases that were accounted were: 2 {{{ 2 3 1. // ^IMAGE = 3 3 4 2. // ^IMAGE = "GLOBAL_ALBEDO_8PPD.IMG" 4 5 3. // ^IMAGE = "MEGT90N000CB.IMG" 5 6 4. // ^SPECTRAL_QUBE = 5 for multi-band images 7 }}} 6 8 7 9 where 1 is an in-line label and the skipbyte = 3. … … 10 12 11 13 so the new style that has been encounter is: 14 {{{ 12 15 5. //^IMAGE = ("DTEEC_008669_1705_009025_1705_A01.IMG", 2) 16 }}} 17 13 18 where the label is pointing to a detached image but still requires a skipbyte of 2 into the file. 14 19 15 20 I guess we might want to account for (essentially the same thing as above). 21 {{{ 16 22 5. //^SPECTRAL_QUBE = ("DTEEC_008669_1705_009025_1705_A01.IMG", 2) 17 23 }}} 18 24 19 25 test file (sorry so large - 500MB) 26 20 27 ftp://pdsimage2.wr.usgs.gov/pub/pigpen/.temp/DTEEC_008669_1705_009025_1705_A01.zip 21 28