I guess you mean measurement exported as text rather than impulse. Do you have an example mdat showing that?
Yes, sorry measurement not impulse in the mdat exports (with default options) with last freq mag missing compared to the decoded values with this algorithm:
const magBase64 = await fetchSafe('frequency-response',i);
const bytes = Uint8Array.from(atob(magBase64.magnitude), c => c.charCodeAt(0));
const buffer = bytes.buffer;
const floatArray = new Float32Array(buffer);
const dataView = new DataView(buffer);
const arr = [];
for (let j = 0; j < floatArray.length; j++) {
const splValue = dataView.getFloat32(j * 4);
arr.push(splValue);
}
It's 1/1 oct smoothed in the mdat but other smoothing parameters behave the same.