You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 363 has a clear error with an easy fix, where req.nFrames should be replaced with req.nAvgs.
Line 367 has the data type hardcoded as 12 (Unsigned integer: 16-bit, which seems reasonable), when we expect from data collected with legacy version of Liveview to be 4 (Floating-point: 32-bit single-precision, which does not seem so reasonable). Need to consider this more. See https://www.l3harrisgeospatial.com/docs/enviheaderfiles.html for reference.
Line 368 seems like it should be handled differently, since bit_org is of type org_t which is an enum defined as {fwBIL, fwBIP, fwBSQ} (see https://github.com/nasa-jpl/LiveViewOpenSource/blob/master/include/image_type.h). It is probably working correctly as coded, since fwBIL should return 0 when converted to string. However, in an ENVI header this should be bil. Perhaps create an array of strings and index into this array?
The text was updated successfully, but these errors were encountered:
justinhaag
changed the title
Incorrect header entries written by frameworker
Incorrect header entries written by frameworker.cpp
Feb 25, 2021
The text was updated successfully, but these errors were encountered: