async function* streamGeoJSONL(url) {
const response = await fetch(url);
console.log(response.redirected)
const reader = response.body.getReader();
const decoder = new TextDecoder('utf-8');
let lineFragment = '';
while (true) {
const { done, value } = await reader.read();
if (!done) {
const lines = decoder.decode(value).split('\n');
if (lineFragment != '') {
lines[0] = lineFragment + lines[0];
lineFragment = '';
}
const lastLine = lines[lines.length-1];
if (lastLine[lastLine.length-1] !== '\n') {
lineFragment = lines.pop();
}
yield lines.map(JSON.parse);
}
else {
break;
}
}
}