flatgeobuf/examples/node/streamtest.js
2024-12-25 03:22:31 +01:00

9 lines
291 B
JavaScript

import { geojson } from 'flatgeobuf';
async function streamtest() {
const response = await fetch('https://flatgeobuf.org/test/data/UScounties.fgb');
for await (const feature of geojson.deserialize(response.body)) console.log(JSON.stringify(feature, undefined, 1));
}
streamtest();