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
Copy file name to clipboardExpand all lines: src/records/aedr.jl
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ struct AEDR{FST, A}
21
21
Value::A# This consists of the number of elements (specified by the NumElems field) of the data type (specified by the DataType field). This can be thought of as a 1-dimensional array of values (stored contiguously). The size of this field is the product of the number of elements and the size in bytes of each element.
22
22
end
23
23
24
-
function load_aedr_data(buffer::Vector{UInt8}, offset, RecordSizeType, cdf_encoding)
24
+
function load_aedr_data(buffer::Vector{UInt8}, offset, RecordSizeType, needs_byte_swap)
25
25
_datatype_offset =9+2* sizeof(RecordSizeType)
26
26
_numelems_offset =17+2* sizeof(RecordSizeType)
27
27
_data_offset =41+2* sizeof(RecordSizeType)
@@ -31,7 +31,6 @@ function load_aedr_data(buffer::Vector{UInt8}, offset, RecordSizeType, cdf_encod
0 commit comments